/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2d5a3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3524;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #3d7a4d;
}

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

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

/* Navigation */
.nav-minimal {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e5e5e5;
    padding: 1.2rem 2rem;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a3d;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #2a2a2a;
    font-weight: 400;
}

.nav-links a:hover {
    color: #2d5a3d;
}

/* Editorial Container - Main Layout */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Article Sections */
.article-section {
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.article-section.bg-light {
    background-color: #f9f9f9;
    margin-left: -100vw;
    margin-right: -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
}

.article-section.bg-dark {
    background-color: #2a2a2a;
    color: #ffffff;
    margin-left: -100vw;
    margin-right: -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
}

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

/* Hero Section */
.article-hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

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

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: 8px;
}

/* Page Hero (for other pages) */
.page-hero {
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

/* Typography */
h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #2a2a2a;
}

h4 {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem;
    color: #2a2a2a;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 400;
    color: #3a3a3a;
}

.light-text {
    color: #e5e5e5;
}

.light-heading {
    color: #ffffff;
}

/* Images */
.inline-image {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 8px;
}

/* CTAs */
.inline-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.btn-inline {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background-color: #1a3524;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.3);
}

.inline-cta-alt {
    background-color: #f5f5f5;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a3524;
    transform: translateY(-2px);
}

.btn-text-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #2d5a3d;
}

.btn-text-link:hover {
    text-decoration: underline;
}

/* Testimonials */
.testimonial-inline {
    display: block;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #2d5a3d;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.testimonial-author {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
}

.testimonials-section {
    background-color: #f9f9f9;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.testimonial-meta {
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
}

/* Symptoms List */
.symptoms-list {
    margin: 2rem 0;
}

.symptom-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.symptom-item:last-child {
    border-bottom: none;
}

.symptom-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
}

.symptom-item p {
    font-size: 1.05rem;
    color: #555;
}

/* Process Box */
.process-box {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.process-box h3 {
    margin-top: 0;
}

.process-list {
    list-style: none;
    margin: 1.5rem 0;
}

.process-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.process-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

/* Myth Boxes */
.myth-box {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-left: 3px solid #2d5a3d;
    background-color: #ffffff;
}

.myth-title {
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
    color: #2d5a3d;
}

/* Services */
.services-list {
    margin: 3rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #2d5a3d;
}

.service-card.featured {
    border-color: #2d5a3d;
    border-width: 3px;
}

.service-card.premium {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-color: #1a3524;
}

.service-header {
    padding: 2rem;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.service-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a3d;
}

.service-body {
    padding: 2rem;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #2a2a2a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

.service-for {
    font-size: 0.95rem;
    font-style: italic;
    color: #666;
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a3524;
}

/* Timeline */
.timeline-step {
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    border-left: 3px solid #2d5a3d;
}

.timeline-step h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

/* FAQ */
.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.faq-item p {
    font-size: 1.05rem;
    color: #555;
}

/* Contact */
.contact-split {
    margin: 3rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-block h3,
.contact-form-block h3 {
    margin-top: 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #2d5a3d;
    font-weight: 500;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-top: 0.5rem;
}

/* Forms */
.contact-form {
    margin: 2rem 0;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a3524;
    transform: translateY(-2px);
}

.form-privacy-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.form-privacy-note a {
    color: #2d5a3d;
    text-decoration: underline;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

.thanks-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-info-box {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    text-align: left;
}

.thanks-info-box h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1rem;
    color: #2a2a2a;
}

.thanks-next-steps {
    margin: 2rem 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding: 0.5rem 0;
}

.thanks-next-steps a {
    color: #2d5a3d;
    font-weight: 500;
}

.thanks-cta {
    margin-top: 2rem;
}

.btn-final {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background-color: #1a3524;
}

.final-section {
    text-align: center;
    padding: 3rem 0;
}

.final-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.final-cta {
    margin-top: 2rem;
}

/* CTA Section */
.cta-section {
    background-color: #f9f9f9;
    text-align: center;
}

/* Team */
.team-member {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.team-member:last-child {
    border-bottom: none;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-role {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #2d5a3d;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Philosophy Boxes */
.philosophy-box {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.philosophy-box h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #2d5a3d;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.intro-legal {
    font-size: 1.05rem;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.legal-box {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 6px;
    border-left: 4px solid #2d5a3d;
}

.legal-box h3 {
    margin-top: 0;
    font-size: 1.15rem;
    color: #2d5a3d;
}

.legal-box p {
    margin-bottom: 0.8rem;
}

.legal-box p:last-child {
    margin-bottom: 0;
}

.legal-update {
    font-style: italic;
    color: #666;
    margin-top: 3rem;
    font-size: 0.9rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.cookies-table th,
.cookies-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #e5e5e5;
}

.cookies-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #2a2a2a;
}

.simple-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.simple-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #e5e5e5;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-col h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #e5e5e5;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }

    .form-row {
        flex-direction: row;
    }

    .contact-grid {
        flex-direction: row;
        gap: 4rem;
    }

    .contact-info-block,
    .contact-form-block {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .page-title {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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