body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5E9D4;
    color: #2E4A3C;
}

.sidebar {
    background-color: #2E4A3C;
    width: 200px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 1rem;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar a {
    color: #F5E9D4;
    text-decoration: none;
    font-weight: bold;
}

.sidebar a:hover {
    color: #F28C38;
}

main {
    margin-left: 220px;
    max-width: 1000px;
    padding: 2rem;
}

.hero, .intro {
    text-align: center;
    margin-bottom: 2rem;
}

.hero img, .intro img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-form input {
    padding: 0.75rem;
    margin: 0.5rem 0;
    width: 100%;
    max-width: 350px;
    border: 1px solid #2E4A3C;
    border-radius: 4px;
}

.btn {
    background-color: #F28C38;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    background-color: #e07b30;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.price {
    color: #2E4A3C;
    font-weight: bold;
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

.old-price {
    color: #d32f2f;
    text-decoration: line-through;
    font-size: 1rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

footer {
    background-color: #2E4A3C;
    color: #F5E9D4;
    padding: 1rem;
    text-align: center;
    margin-left: 200px;
}

footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

footer a {
    color: #F5E9D4;
    text-decoration: none;
}

footer a:hover {
    color: #F28C38;
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: static;
        padding: 1rem;
    }

    main, footer {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}