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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #faf8f5;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    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-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#cookie-accept {
    background-color: #7a6550;
    color: #fff;
}

#cookie-accept:hover {
    background-color: #5f4d3c;
}

#cookie-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

#cookie-reject:hover {
    background-color: #d0d0d0;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #7a6550;
}

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

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #7a6550;
}

.hero-section {
    padding: 60px 20px;
}

.hero-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.hero-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.hero-content {
    padding: 50px 40px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.story-section {
    padding: 80px 20px;
    background-color: #fff;
}

.story-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background-color: #faf8f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.story-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.story-card-content {
    padding: 35px;
}

.story-card-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.story-card-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.reference {
    color: #7a6550;
    text-decoration: none;
    font-weight: 600;
}

.reference:hover {
    text-decoration: underline;
}

.insight-section {
    padding: 80px 20px;
    background-color: #f0ebe6;
}

.insight-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.insight-text {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.insight-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.insight-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.insight-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.benefits-section {
    padding: 80px 20px;
    background-color: #fff;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.benefits-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.benefit-card {
    background-color: #faf8f5;
    padding: 35px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.benefit-icon {
    font-size: 32px;
    color: #7a6550;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #f0ebe6;
}

.testimonial-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    color: #7a6550;
    font-weight: 600;
}

.services-overview {
    padding: 80px 20px;
    background-color: #fff;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #faf8f5;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #7a6550;
    margin-bottom: 15px;
}

.booking-section {
    padding: 80px 20px;
    background-color: #f0ebe6;
}

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

.booking-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.booking-card > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 15px 30px;
    background-color: #7a6550;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.composition-section {
    padding: 80px 20px;
    background-color: #fff;
}

.composition-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.composition-card {
    background-color: #faf8f5;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.composition-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #7a6550;
}

.composition-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f0ebe6;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #7a6550;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.references-section {
    padding: 50px 20px;
    background-color: #fff;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.references-list {
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 20px;
}

.references-list li {
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.references-list a {
    color: #7a6550;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 50px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

@media (min-width: 768px) {
    .hero-card {
        flex-direction: row;
    }

    .hero-image {
        width: 50%;
        height: auto;
    }

    .hero-content {
        width: 50%;
    }

    .story-card {
        flex-direction: row;
    }

    .story-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .story-card img {
        width: 45%;
        height: auto;
    }

    .story-card-content {
        width: 55%;
    }

    .insight-grid {
        flex-direction: row;
    }

    .insight-text {
        width: 55%;
    }

    .insight-image {
        width: 40%;
        height: auto;
    }
}