:root {
    /* Colors */
    --color-primary: #2e7d32;
    --color-secondary: #66bb6a;
    --color-background: #f5fcf5;
    --color-footer-bg: #1b5e20;
    --color-button: #4caf50;
    --color-header-bg: #e8f5e9;
    --color-text-light: #c8e6c9;
    --color-section-bg-1: #d9ead3;
    --color-section-bg-2: #f0f2f5;
    --color-section-bg-3: #d6eaff;
    --color-section-bg-4: #fffbec;

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Lato', sans-serif;
    --text-color-dark: #333;
    --text-color-light: #f0f0f0;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 96px;

    /* Border Radius */
    --border-radius-card: 16px;
    --border-radius-button: 30px;

    /* Box Shadows */
    --shadow-soft: 0px 8px 15px rgba(0, 0, 0, 0.1);
    --shadow-header: 0px 8px 15px rgba(46, 125, 50, 0.2);
    /* Claymorphism shadows for buttons */
    --shadow-clay-outer: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.8);
    --shadow-clay-inner: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.8);
    --shadow-clay-pressed: inset 6px 6px 12px rgba(0, 0, 0, 0.2), inset -6px -6px 12px rgba(255, 255, 255, 0.6);

    /* Transitions */
    --transition-speed: 0.3s;
    --transition-ease: ease-in-out;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color-dark);
    line-height: 1.7;
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-ease);
}

a:hover {
    color: var(--color-secondary);
}

/* Layout & Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1; /* Ensure content is above any background shapers */
}

.section-bg-1 {
    background-color: var(--color-section-bg-1);
}

.section-bg-2 {
    background-color: var(--color-section-bg-2);
}

.section-bg-3 {
    background-color: var(--color-section-bg-3);
}

.section-bg-4 {
    background-color: var(--color-section-bg-4);
}

/* Header Styling */
.header {
    background-color: var(--color-header-bg);
    box-shadow: var(--shadow-header);
    padding: var(--spacing-sm) 0;
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: center; /* Center logo */
    align-items: center;
    position: relative;
    padding-bottom: var(--spacing-sm); /* Space for the wave */
}

.header-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2; /* Above wave */
}

.header-nav {
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2; /* Above wave */
}

.header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--spacing-md);
}

.header-nav a {
    font-weight: 500;
    color: var(--color-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-button);
    transition: all var(--transition-speed) var(--transition-ease);
}

.header-nav a:hover {
    background-color: rgba(var(--color-primary), 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Organic Wave for Header Bottom */
.header::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Overlap slightly to prevent gap */
    left: 0;
    width: 100%;
    height: 60px; /* Adjust height for wave intensity */
    background: var(--color-header-bg);
    border-radius: 0 0 50% 50% / 0 0 100px 100px; /* Creates the organic wave shape */
    transform: scaleX(1.5); /* Stretch for wider wave */
    z-index: 1; /* Below content but above background */
}


/* Footer Styling */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    position: relative;
    z-index: 10;
}

/* Organic Wave for Footer Top */
.footer::before {
    content: '';
    position: absolute;
    top: -1px; /* Overlap slightly to prevent gap */
    left: 0;
    width: 100%;
    height: 80px; /* Adjust height for wave intensity */
    background: var(--color-footer-bg);
    border-radius: 50% 50% 0 0 / 100px 100px 0 0; /* Creates the organic wave shape */
    transform: scaleX(1.5); /* Stretch for wider wave */
    z-index: 1; /* Below content but above background */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2; /* Ensure content is above wave */
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--color-text-light);
    opacity: 0.8;
    transition: opacity var(--transition-speed) var(--transition-ease);
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(var(--color-text-light), 0.1);
    font-size: 0.9rem;
    color: var(--color-text-light);
    opacity: 0.7;
    position: relative;
    z-index: 2;
}

/* Button Styling (Claymorphism) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius-button);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--color-button);
    color: white;
    box-shadow: var(--shadow-clay-outer);
    transition: all var(--transition-speed) var(--transition-ease);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow; /* Optimize for animation */
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.15), -12px -12px 24px rgba(255, 255, 255, 0.9);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: var(--shadow-clay-pressed);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--text-color-dark);
}

/* Card Styling */
.card {
    background-color: white;
    border-radius: var(--border-radius-card);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-speed) var(--transition-ease), box-shadow var(--transition-speed) var(--transition-ease);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-card); /* Apply consistent border radius */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .header-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .header-nav {
        position: static;
        transform: none;
        margin-top: var(--spacing-sm);
    }

    .header-nav ul {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }
}


/* 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;
    }
}