/* 
   Color Palette: pine-copper
   Primary: #1A3325 (Dark Forest Green)
   Secondary: #253F30 (Muted Pine Green)
   Accent: #A06830 (Warm Copper)
   Bg Tint: #F0F8F2 (Soft Sage Tint)
   Design Style: soft-organic
   Border Style: rounded
   Shadow Style: flat
   Color Mode: dark
*/

:root {
    --color-primary: #1A3325;
    --color-secondary: #253F30;
    --color-accent: #A06830;
    --bg-tint: #F0F8F2;
    
    /* Dark Theme Core Variables */
    --bg-dark: #122018;
    --bg-dark-card: #1B2E23;
    --text-light: #F0F8F2;
    --text-muted: #A3BCA9;
    --border-radius-large: 32px;
    --border-radius-card: 16px;
    --border-radius-btn: 8px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    font-size: clamp(14px, 4vw, 18px);
    overflow-x: hidden;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.container-narrow {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header & Hamburger */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-primary);
    border-bottom: 1px solid var(--color-secondary);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-light) !important;
    z-index: 100;
}

.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-light);
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    color: var(--text-light);
    font-weight: 500;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--color-primary);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
    color: var(--text-light);
    display: block;
    font-size: 18px;
}

/* Hero Section (gradient-center) */
.hero-section {
    position: relative;
    padding: 80px 16px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at center, var(--color-secondary) 0%, var(--bg-dark) 80%);
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
}

.hero-section h1 {
    font-size: clamp(32px, 7vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-light);
}

.hero-section p {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Decorative CSS Shapes for Soft-Organic style */
.hero-decorator-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 43% 57% 70% 30% / 45% 45% 55% 55%;
    background-color: rgba(160, 104, 48, 0.05);
    top: -50px;
    left: -100px;
    filter: blur(40px);
}

.hero-decorator-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 57% 43% 30% 70% / 55% 55% 45% 45%;
    background-color: rgba(37, 63, 48, 0.1);
    bottom: -100px;
    right: -100px;
    filter: blur(50px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--text-light);
    color: var(--color-primary);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--color-accent);
}

.btn-secondary-outline:hover {
    background-color: var(--color-accent);
}

/* Sections General */
section {
    padding: 60px 16px;
}

@media (min-width: 768px) {
    section {
        padding: 100px 24px;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-header h2 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
}

/* Benefits Timeline */
.benefits-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 32px;
    border-left: 2px solid var(--color-accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -53px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.timeline-content p {
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonials-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--bg-dark-card);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--color-secondary);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 16px;
}

.testimonial-rating {
    color: var(--color-accent);
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 18px;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--color-accent);
}

/* Grid Layouts */
.grid-two-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-two-cols {
        grid-template-columns: 1fr 1fr;
    }
}

.organic-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    object-fit: cover;
    border: 1px solid var(--color-secondary);
}

.col-text h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 24px;
}

.col-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.benefits-list {
    list-style: none;
    margin: 24px 0;
}

.benefits-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* Quote Section */
.quote-section {
    background-color: var(--color-secondary);
    text-align: center;
    border-radius: var(--border-radius-large);
    margin: 40px 16px;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 80px;
    line-height: 1;
    color: var(--color-accent);
    display: block;
    height: 40px;
}

blockquote {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 300;
    margin-bottom: 24px;
}

cite {
    font-style: normal;
    color: var(--color-accent);
    font-weight: 600;
}

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-top: 24px;
}

.comparison-table th, .comparison-table td {
    padding: 18px;
    border-bottom: 1px solid var(--color-secondary);
}

.comparison-table th {
    background-color: var(--color-primary);
    color: var(--text-light);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: rgba(27, 46, 35, 0.3);
}

/* Inner Hero */
.inner-hero {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--bg-dark) 100%);
    padding: 80px 16px;
}

/* Program Grid */
.program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    @media (min-width: 1024px) {
        .program-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

.program-card {
    background-color: var(--bg-dark-card);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--color-secondary);
    transition: border-color 0.3s ease;
}

.program-card:hover {
    border-color: var(--color-accent);
}

.card-num {
    font-size: 48px;
    font-weight: bold;
    color: rgba(160, 104, 48, 0.2);
    margin-bottom: 16px;
    line-height: 1;
}

.program-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.program-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Stats Section */
.grid-four-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .grid-four-cols {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    padding: 24px;
}

.stat-number {
    font-size: 40px;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-dark-card);
    padding: 24px;
    border-radius: var(--border-radius-card);
    margin-bottom: 16px;
    border: 1px solid var(--color-secondary);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.faq-item p {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background-color: var(--color-primary);
    border-radius: var(--border-radius-large);
    margin: 40px 16px;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: var(--bg-dark-card);
    padding: 40px 24px;
    border-radius: var(--border-radius-card);
    text-align: center;
    border: 1px solid var(--color-secondary);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
}

/* Contact Grid */
.grid-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .grid-contact {
        grid-template-columns: 3fr 2fr;
    }
}

/* Forms styling */
.organic-form {
    background-color: var(--bg-dark-card);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--color-secondary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-dark);
    border: 1px solid var(--color-secondary);
    color: var(--text-light);
    border-radius: var(--border-radius-btn);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* Contact Details Cards */
.contact-card {
    background-color: var(--bg-dark-card);
    padding: 24px;
    border-radius: var(--border-radius-card);
    margin-bottom: 16px;
    border: 1px solid var(--color-secondary);
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.contact-link {
    color: var(--text-light);
}

.contact-link:hover {
    color: var(--color-accent);
}

/* Legal Pages */
.legal-page {
    padding: 80px 16px;
}

.last-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-section {
    margin-bottom: 40px;
    padding: 0;
}

.legal-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.legal-section p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-section ul {
    padding-left: 24px;
    color: var(--text-muted);
}

.legal-section li {
    margin-bottom: 12px;
}

.warning-box {
    background-color: rgba(160, 104, 48, 0.1);
    padding: 24px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--color-accent);
}

/* Thank You Section */
.thank-section {
    padding: 100px 16px;
    text-align: center;
}

.thank-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.thank-steps {
    max-width: 800px;
    margin: 48px auto;
    text-align: left;
}

.thank-steps h3 {
    text-align: center;
    margin-bottom: 24px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.step-card {
    background-color: var(--bg-dark-card);
    padding: 24px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--color-secondary);
}

.step-card h4 {
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 16px;
}

.step-link {
    font-weight: 600;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    transform: translateY(0);
    transition: transform 0.4s ease;
    background-color: var(--color-primary);
    border-top: 1px solid var(--color-accent);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    color: var(--text-light);
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--text-light);
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-muted);
    padding: 8px 16px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
}

@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-btns {
        width: 100%;
    }
    .cookie-btn-accept, .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}

/* Footer (Hardcoded text/background colors to protect from translator breaks) */
.site-footer {
    background-color: #1A3325 !important;
    color: #F0F8F2 !important;
    padding: 60px 16px 20px 16px;
    border-top: 1px solid #253F30;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-desc {
    color: #A3BCA9 !important;
    font-size: 14px;
}

.site-footer h4 {
    color: #A06830 !important;
    margin-bottom: 16px;
    font-size: 18px;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer a {
    color: #F0F8F2 !important;
    font-size: 14px;
}

.site-footer a:hover {
    color: #A06830 !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #253F30;
    text-align: center;
    font-size: 14px;
    color: #A3BCA9 !important;
}

/* Mobile Adaptation Rules */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}