* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f8f6f3;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3d2f28;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #c8a882;
    color: #2c2c2c;
}

.btn-accept:hover {
    background-color: #d4b896;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #4a3428;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #5c5c5c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4a3428;
}

.ad-label {
    font-size: 12px;
    color: #888;
    padding: 4px 12px;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.hero-section {
    padding: 0;
    margin-bottom: 60px;
}

.hero-card {
    position: relative;
    height: 550px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 20px;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.intro-section {
    padding: 60px 0;
}

.intro-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 36px;
    color: #4a3428;
    margin-bottom: 20px;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #5c5c5c;
}

.featured-services {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #4a3428;
    margin-bottom: 50px;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    color: #4a3428;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 15px;
    color: #6c6c6c;
    line-height: 1.6;
    margin-bottom: 18px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #c8a882;
}

.order-section {
    padding: 80px 0;
    background-color: #f0ebe5;
}

.order-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.order-card h2 {
    font-size: 36px;
    color: #4a3428;
    margin-bottom: 16px;
    text-align: center;
}

.order-card > p {
    text-align: center;
    font-size: 16px;
    color: #6c6c6c;
    margin-bottom: 40px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #4a3428;
    font-size: 15px;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c8a882;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #4a3428;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #5c4538;
}

.atmosphere-section {
    padding: 80px 0;
}

.atmosphere-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.atmosphere-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 20px);
    min-width: 280px;
    text-align: center;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.atmosphere-card h3 {
    font-size: 22px;
    color: #4a3428;
    margin-bottom: 12px;
}

.atmosphere-card p {
    font-size: 15px;
    color: #6c6c6c;
    line-height: 1.6;
}

.footer {
    background-color: #3d2f28;
    color: #e0d8cf;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-column a {
    color: #c8a882;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #d4b896;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer-text {
    font-size: 12px;
    color: #b0a89f;
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid #5c4a42;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b0a89f;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .service-card {
        width: 100%;
    }

    .atmosphere-card {
        width: 100%;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .intro-card {
        padding: 30px;
    }

    .order-card {
        padding: 30px;
    }
}