:root {
    --primary-color: #76B947;
    --secondary-color: #50873D;
    --background-color: #F0F8F0;
    --footer-bg-color: #4A4A4A;
    --button-color: #76B947;
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --border-radius-soft: 12px;
    --transition-speed: 0.3s ease-in-out;
    --shadow-clay-light: 8px 8px 16px rgba(118, 185, 71, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.8);
    --shadow-clay-dark: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.7);
    --section-bg-1: #FFFFFF;
    --section-bg-2: #F8FFF8;
    --section-bg-3: #E8F5E9;
    --section-bg-4: #F0F8F0;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.7;
    color: var(--text-color-dark);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--secondary-color);
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.2em;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-color);
}

h2 {
    font-size: 2.5em;
    font-weight: 600;
    letter-spacing: -0.015em;
}

h3 {
    font-size: 1.9em;
    font-weight: 500;
}

p {
    margin-bottom: 1.2em;
    font-size: 1.1em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Claymorphism Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2em 2.5em;
    border-radius: var(--border-radius-soft);
    font-family: var(--heading-font);
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: var(--button-color);
    color: var(--text-color-light);
    box-shadow: var(--shadow-clay-light);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 10px 10px 20px rgba(118, 185, 71, 0.3), -10px -10px 20px rgba(255, 255, 255, 0.9);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: var(--shadow-clay-dark);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover::before {
    width: 200%;
    height: 200%;
}

/* Claymorphism Card */
.card {
    background-color: var(--section-bg-1);
    border-radius: var(--border-radius-soft);
    padding: 2.5em;
    box-shadow: var(--shadow-clay-light);
    transition: all var(--transition-speed);
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 20px rgba(118, 185, 71, 0.25), -10px -10px 20px rgba(255, 255, 255, 0.9);
}

/* Input Fields (Claymorphism style) */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 1em 1.5em;
    margin-bottom: 1.5em;
    border: none;
    border-radius: var(--border-radius-soft);
    background-color: var(--background-color);
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.08), inset -3px -3px 6px rgba(255, 255, 255, 0.7);
    font-family: var(--body-font);
    font-size: 1em;
    color: var(--text-color-dark);
    transition: box-shadow var(--transition-speed);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.1), inset -2px -2px 4px rgba(255, 255, 255, 0.8), 0 0 0 3px rgba(118, 185, 71, 0.3);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* Section Backgrounds */
.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);
}

/* Utility for spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
}

.py-10 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.text-center {
    text-align: center;
}

/* Footer specific styles */
footer {
    background-color: var(--footer-bg-color);
    color: var(--text-color-light);
    padding: 3em 0;
    text-align: center;
    font-size: 0.9em;
}

footer a {
    color: var(--primary-color);
}

footer a:hover {
    color: var(--text-color-light);
}

/* Hero Section - Example of a more complex layout */
.hero-section {
    background: linear-gradient(135deg, var(--section-bg-4) 0%, var(--section-bg-3) 100%);
    padding: 8em 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: floatLight 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(118, 185, 71, 0.2) 0%, rgba(118, 185, 71, 0) 70%);
    border-radius: 50%;
    animation: floatLight 10s reverse ease-in-out infinite;
}

@keyframes floatLight {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(20px, 20px) scale(1.1); opacity: 0.8; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.5em;
    }

    .btn {
        padding: 1em 2em;
        font-size: 1em;
    }

    .card {
        padding: 1.5em;
    }

    .py-10 {
        padding-top: 3em;
        padding-bottom: 3em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.6em;
    }

    p {
        font-size: 1em;
    }

    .btn {
        width: 100%;
        padding: 0.8em 1.5em;
    }

    .container {
        padding: 0 1em;
    }
}


/* 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;
    }
}