:root {
    /* Colors */
    --color-primary: #6B8E23; /* Olive Green */
    --color-secondary: #82AC43; /* Light Olive Green */
    --color-background: #F3F7E5; /* Light Creamy Green */
    --color-footer-bg: #1F4242; /* Dark Teal */
    --color-text-dark: #1F4242;
    --color-text-light: #F3F7E5;
    --color-accent: #AECB5C; /* Brighter Green for subtle accents */

    /* Section Backgrounds */
    --section-bg-1: #F3F7E5;
    --section-bg-2: #DDE9B6;
    --section-bg-3: #E9F1D6;
    --section-bg-4: #3A5C5C; /* Darker Teal */
    --section-bg-5: #4E7373; /* Medium Teal */

    /* Fonts */
    --font-heading: 'Lora', serif; /* Elegant, organic feel */
    --font-body: 'Poppins', sans-serif; /* Clean, modern, legible */

    /* Spacing */
    --spacing-unit: 1rem;
    --padding-section: 6rem 2rem; /* Generous padding for sections */
    --margin-element: 1.5rem;

    /* Border Radii */
    --border-radius-soft: 12px;
    --border-radius-medium: 24px;
    --border-radius-large: 40px; /* More rounded for organic feel */

    /* Shadows */
    --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 12px 30px rgba(0, 0, 0, 0.12);
    --shadow-subtle-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --transition-speed: 0.4s;
    --transition-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth ease-out */
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-background);
    line-height: 1.7; /* Increased line-height for readability and 'air' */
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: var(--spacing-unit);
    letter-spacing: -0.02em; /* Slightly tighter for headings */
}

h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: var(--margin-element);
    color: var(--color-primary); /* Emphasize with primary color */
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: var(--margin-element);
}

h3 {
    font-size: 2.2rem;
    font-weight: 500;
}

h4 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    max-width: 75ch; /* Optimal line length for readability */
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-ease), transform var(--transition-speed) var(--transition-ease);
    position: relative;
}

a:hover {
    color: var(--color-secondary);
    transform: translateY(-1px);
}

a:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius-large); /* Very rounded, organic shape */
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-ease);
    box-shadow: var(--shadow-soft); /* Subtle shadow for depth */
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px); /* Lift effect */
    box-shadow: var(--shadow-medium);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-subtle-inset);
    background-color: color-mix(in srgb, var(--color-primary) 80%, black); /* Slightly darker on active */
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-subtle-inset);
    background-color: color-mix(in srgb, var(--color-primary) 80%, black);
}

/* Sections & Layout */
.section {
    padding: var(--padding-section);
    margin-bottom: 0; /* Sections should flow into each other without extra margin */
    position: relative;
    overflow: hidden; /* For any internal animations */
}

.section-bg-1 {
    background-color: var(--section-bg-1);
}

.section-bg-2 {
    background-color: var(--section-bg-2);
}

.section-bg-3 {
    background-color: var(--section-bg-3);
}

.section-bg-4 {
    background-color: var(--section-bg-4);
    color: var(--color-text-light);
}
.section-bg-4 h1, .section-bg-4 h2, .section-bg-4 h3, .section-bg-4 h4, .section-bg-4 h5, .section-bg-4 h6, .section-bg-4 p, .section-bg-4 a {
    color: var(--color-text-light);
}
.section-bg-4 .btn-secondary {
    border-color: var(--color-text-light);
    color: var(--color-text-light);
}
.section-bg-4 .btn-secondary:hover {
    background-color: var(--color-text-light);
    color: var(--color-footer-bg);
}


.section-bg-5 {
    background-color: var(--section-bg-5);
    color: var(--color-text-light);
}
.section-bg-5 h1, .section-bg-5 h2, .section-bg-5 h3, .section-bg-5 h4, .section-bg-5 h5, .section-bg-5 h6, .section-bg-5 p, .section-bg-5 a {
    color: var(--color-text-light);
}
.section-bg-5 .btn-secondary {
    border-color: var(--color-text-light);
    color: var(--color-text-light);
}
.section-bg-5 .btn-secondary:hover {
    background-color: var(--color-text-light);
    color: var(--color-footer-bg);
}


/* Cards - for content blocks, images, features */
.card {
    background-color: white;
    border-radius: var(--border-radius-large); /* Large radius for organic feel */
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    transition: transform var(--transition-speed) var(--transition-ease), box-shadow var(--transition-speed) var(--transition-ease);
    will-change: transform, box-shadow;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px); /* Gentle lift on hover */
    box-shadow: var(--shadow-medium);
}

/* Forms */
.form-group {
    margin-bottom: var(--margin-element);
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--color-secondary);
    border-radius: var(--border-radius-soft);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    background-color: var(--color-background);
    transition: border-color var(--transition-speed) var(--transition-ease), box-shadow var(--transition-speed) var(--transition-ease);
    outline: none;
}

.form-control::placeholder {
    color: rgba(var(--color-text-dark), 0.6);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(var(--color-primary), 0.2); /* Soft focus ring */
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

/* Footer specific styles */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: 4rem 2rem;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
    color: rgba(var(--color-text-light), 0.8);
}

.footer a {
    color: var(--color-accent);
}

.footer a:hover {
    color: var(--color-secondary);
    transform: none; /* No lift effect for footer links */
    text-decoration: underline;
}

/* Subtle organic shapes/blobs (example of bio-organic inspiration) */
.shape-blob {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(var(--color-primary), 0.05); /* Very subtle */
    filter: blur(80px); /* Soft blur */
    z-index: -1;
    animation: blob-movement 15s infinite alternate ease-in-out;
}

.shape-blob.top-left {
    width: 250px;
    height: 250px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.shape-blob.bottom-right {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
    background-color: rgba(var(--color-secondary), 0.07);
    animation-delay: 2s;
}

@keyframes blob-movement {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-10px, 40px) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1rem;
    }
    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    .section {
        padding: 3rem 1rem;
    }
    .card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    .section {
        padding: 2rem 1rem;
    }
    .btn {
        width: 100%; /* Full width buttons on small screens */
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}