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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fdfcfb;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e9ecef;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d6a4f;
}

.nav-floating {
    display: flex;
    gap: 30px;
}

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

.nav-floating a:hover {
    color: #2d6a4f;
}

.hero-story {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #40916c;
}

.hero-story img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-text-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.hero-text-narrow h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-lead {
    font-size: 20px;
    color: #f1faee;
    line-height: 1.6;
}

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

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1b4332;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.insight-block {
    padding: 80px 20px;
    background-color: #f7f9f8;
}

.insight-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-left: 5px solid #2d6a4f;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.insight-card h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1b4332;
}

.insight-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-content a {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
}

.insight-content a:hover {
    text-decoration: underline;
}

.cta-inline {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
}

.btn-primary {
    display: inline-block;
    background-color: #2d6a4f;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

.problem-section {
    padding: 100px 20px;
    background-color: #fdfcfb;
}

.problem-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1b4332;
}

.problem-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.problem-list {
    list-style: none;
    margin-top: 30px;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.problem-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-size: 24px;
    font-weight: bold;
}

.problem-list a {
    color: #2d6a4f;
    text-decoration: none;
}

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

.problem-image {
    flex: 0 0 400px;
    background-color: #e8f3ef;
}

.problem-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.solution-reveal {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    color: #fff;
}

.solution-reveal h2 {
    font-size: 36px;
    margin-bottom: 28px;
}

.solution-reveal p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.services-funnel {
    padding: 100px 20px;
    background-color: #fff;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1b4332;
}

.services-intro p {
    font-size: 18px;
    color: #555;
}

.service-cards-stacked {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #f9faf9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.service-image {
    flex: 0 0 380px;
    background-color: #d8e9df;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1b4332;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #444;
}

.service-duration {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d6a4f;
    margin: 16px 0;
}

.btn-select-service {
    background-color: #2d6a4f;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #1b4332;
    transform: scale(1.05);
}

.testimonials-inline {
    padding: 100px 20px;
    background-color: #f7f9f8;
}

.testimonials-inline h2 {
    font-size: 34px;
    margin-bottom: 50px;
    color: #1b4332;
    text-align: center;
}

.testimonial-block {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid #74c69d;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
    color: #333;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #2d6a4f;
}

.booking-section {
    padding: 100px 20px;
    background-color: #fff;
}

.booking-container {
    max-width: 650px;
    margin: 0 auto;
}

.booking-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1b4332;
    text-align: center;
}

.booking-container > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #555;
}

.booking-form {
    background-color: #f9faf9;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d8e9df;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d6a4f;
}

.form-group input[readonly] {
    background-color: #e8f3ef;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background-color: #2d6a4f;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

.ingredients-section {
    padding: 100px 20px;
    background-color: #fdfcfb;
}

.ingredients-section h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #1b4332;
}

.ingredients-section > div > p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.ingredients-list {
    list-style: none;
}

.ingredients-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e8f3ef;
    font-size: 16px;
    line-height: 1.7;
}

.ingredients-list li:last-child {
    border-bottom: none;
}

.ingredients-list a {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
}

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

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

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #664d03;
}

.footer {
    background-color: #1b4332;
    color: #d8e9df;
    padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #95d5b2;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(216, 233, 223, 0.2);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(27, 67, 50, 0.98);
    color: #fff;
    padding: 24px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #95d5b2;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #52b788;
    color: #fff;
}

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

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

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

.about-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #40916c;
}

.about-hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.about-content {
    padding: 100px 20px;
    background-color: #fff;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1b4332;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.philosophy-section {
    padding: 100px 20px;
    background-color: #f7f9f8;
}

.philosophy-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-image {
    flex: 0 0 450px;
    background-color: #d8e9df;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1b4332;
}

.philosophy-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.philosophy-text ul {
    list-style: none;
    margin-top: 24px;
}

.philosophy-text ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.philosophy-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-size: 20px;
    font-weight: bold;
}

.values-section {
    padding: 100px 20px;
    background-color: #fff;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1b4332;
    text-align: center;
}

.value-item {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f9faf9;
    border-left: 4px solid #52b788;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1b4332;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.team-section {
    padding: 100px 20px;
    background-color: #f7f9f8;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1b4332;
}

.team-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.cta-section {
    padding: 100px 20px;
    background-color: #fff;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #f9faf9;
    padding: 60px 40px;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1b4332;
}

.cta-box p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.services-list-page {
    padding: 100px 20px;
    background-color: #fff;
}

.services-list-page h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1b4332;
}

.services-list-page > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page {
    padding: 100px 20px;
    background-color: #fff;
}

.contact-page h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1b4332;
}

.contact-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1b4332;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d6a4f;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.contact-map {
    flex: 1;
    background-color: #e8f3ef;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #f7f9f8;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1b4332;
}

.thanks-box p {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #444;
}

.thanks-box .service-confirmed {
    font-size: 20px;
    font-weight: 600;
    color: #2d6a4f;
    margin: 30px 0;
}

.thanks-box .btn-primary {
    margin-top: 30px;
}

.legal-page {
    padding: 100px 20px;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1b4332;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1b4332;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2d6a4f;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #444;
}

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-page a {
    color: #2d6a4f;
    text-decoration: underline;
}

.legal-page .last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .hero-text-narrow h1 {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .problem-layout {
        flex-direction: column;
    }

    .problem-image {
        flex: 1;
        width: 100%;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: 1;
        height: 250px;
    }

    .nav-floating {
        flex-direction: column;
        gap: 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .philosophy-layout {
        flex-direction: column;
    }

    .philosophy-image {
        flex: 1;
        width: 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

    .contact-map {
        min-height: 300px;
    }
}