body {
    font-family: 'Arial', sans-serif;
    background-color: #fff5e6;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #ff8c00;
    color: white;
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

h1 {
    margin: 0;
    font-size: 2em;
}

.design-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.design-item {
    width: 100%;
    margin-bottom: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 20px;
}

.design-item h2 {
    color: #ff6347;
    border-bottom: 2px solid #ff8c00;
    padding-bottom: 10px;
}

.design-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.site-features h3 {
    color: #ff6347;
    margin-bottom: 10px;
}

.site-features ul {
    padding-left: 20px;
    list-style-type: disc;
}

.site-features li {
    margin-bottom: 8px;
}

footer {
    background-color: #ff8c00;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .design-item {
        width: calc(50% - 20px);
    }
}
