:root {
    --color-primary: #4CAF50;
    --color-secondary: #2196F3;
    --color-background: #F0F8F1;
    --color-footer-bg: #2E7D32;
    --color-button: #66BB6A;
    --color-text-dark: #333333;
    --color-text-light: #FFFFFF;
    --color-section-1: #F8FDF8;
    --color-section-2: #FFFFFF;
    --color-section-3: #E8F5E9;
    --color-section-4: #F0FFF4;
    --font-family-base: 'Lato', sans-serif;
    --border-radius-soft: 16px;
    --border-radius-button: 24px;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-clay-outer: 6px 6px 12px rgba(0, 0, 0, 0.1), -6px -6px 12px rgba(255, 255, 255, 0.8);
    --shadow-clay-inner: inset 4px 4px 8px rgba(0, 0, 0, 0.08), inset -4px -4px 8px rgba(255, 255, 255, 0.6);
    --transition-speed: 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    color: var(--color-text-dark);
    line-height: 1.7;
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

h1 {
    font-size: 3.2rem;
    color: var(--color-primary);
}

h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
}

h3 {
    font-size: 1.9rem;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Header Styling */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: var(--border-radius-soft);
    border-bottom-right-radius: var(--border-radius-soft);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.05em;
}

.nav-link {
    color: var(--color-text-dark);
    margin-left: 1.5rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-button);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.nav-link:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    text-decoration: none;
}

/* Button Styling (Claymorphism) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius-button);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: var(--color-button);
    color: var(--color-text-light);
    box-shadow: var(--shadow-clay-outer);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background-color var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-button);
    box-shadow: var(--shadow-clay-inner);
    opacity: 1;
    transition: opacity 0.2s ease-out;
}

.btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.7);
}

.btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.7);
    background-color: #5cb85c; /* Slightly darker on active */
}

/* Section Backgrounds */
.section-bg-1 {
    background-color: var(--color-section-1);
}

.section-bg-2 {
    background-color: var(--color-section-2);
}

.section-bg-3 {
    background-color: var(--color-section-3);
}

.section-bg-4 {
    background-color: var(--color-section-4);
}

/* Card Styling */
.card {
    background-color: var(--color-section-2);
    border-radius: var(--border-radius-soft);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Image Treatment */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-soft);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

.img-fluid:hover {
    transform: scale(1.02);
}

/* Footer Styling */
.footer {
    background: linear-gradient(135deg, var(--color-footer-bg) 0%, #1B5E20 100%);
    color: var(--color-text-light);
    padding: 3rem 2rem;
    text-align: center;
    border-top-left-radius: var(--border-radius-soft);
    border-top-right-radius: var(--border-radius-soft);
}

.footer a {
    color: var(--color-background);
    margin: 0 0.8rem;
    transition: color var(--transition-speed);
}

.footer a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.social-icons a {
    font-size: 1.5rem;
    margin: 0 0.5rem;
    display: inline-block;
    transition: transform 0.2s ease-out;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Alpine.js Transitions */
[x-cloak] { display: none !important; }

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s ease;
}
.fade-enter, .fade-leave-to {
    opacity: 0;
}

.slide-down-enter-active, .slide-down-leave-active {
    transition: all 0.4s ease-out;
    overflow: hidden;
}
.slide-down-enter, .slide-down-leave-to {
    transform: translateY(-10px);
    opacity: 0;
    height: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Utility classes for spacing, if not fully covered by Tailwind */
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.text-center { text-align: center; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .header {
        flex-direction: column;
        padding: 1rem;
    }

    .header-logo {
        margin-bottom: 1rem;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .footer {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .header {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .nav-link {
        margin: 0.3rem 0;
    }
}<ctrl63>


/* 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;
    }
}