:root {
    --color-primary: #2C5F2D;
    --color-secondary: #97BF94;
    --color-accent: #6A9B7A;
    --color-background: #F8FBF8;
    --color-footer-bg: #1A3A1A;
    --color-text-primary: #333333;
    --color-text-secondary: #555555;
    --color-section-1: #E8F1E8;
    --color-section-2: #DDF0DD;
    --color-section-3: #FFFFFF;
    --color-section-4: #F0FBF0;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;

    --border-radius-soft: 0.75rem;
    --box-shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.08);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.8rem, 5vw + 1rem, 4.5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 3.5vw + 1rem, 3.5rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.6rem, 2.5vw + 1rem, 2.5rem);
}

h4 {
    font-size: clamp(1.3rem, 2vw + 1rem, 2rem);
}

p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.15rem;
    color: var(--color-text-secondary);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

strong {
    font-weight: 600;
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-soft);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.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); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-soft);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    color: var(--color-section-3);
    box-shadow: 0 8px 20px rgba(106, 155, 122, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(106, 155, 122, 0.4);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.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-section-3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Cards & Glassmorphism */
.card {
    background-color: var(--color-section-3);
    border-radius: var(--border-radius-soft);
    box-shadow: var(--box-shadow-subtle);
    padding: var(--spacing-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.glass-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-soft);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--color-text-primary);
    font-family: var(--font-body);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--color-secondary);
    border-radius: var(--border-radius-soft);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-primary);
    background-color: var(--color-section-3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 155, 122, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Header & Footer */
.site-header {
    background-color: var(--color-background);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.05em;
}

.site-logo:hover {
    color: var(--color-accent);
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-lg);
}

.main-nav a {
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--color-text-primary);
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.site-footer {
    background-color: var(--color-footer-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) 0;
    font-size: 0.95rem;
}

.site-footer a {
    color: var(--color-secondary);
}

.site-footer a:hover {
    color: var(--color-accent);
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    text-align: center;
}
.site-footer .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

/* Utility classes for Alpine.js transitions */
[x-cloak] { display: none !important; }

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.fade-enter-from, .fade-leave-to {
    opacity: 0;
    transform: translateY(10px);
}
.fade-enter-to, .fade-leave-from {
    opacity: 1;
    transform: translateY(0);
}

.scale-enter-active, .scale-leave-active {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.scale-enter-from, .scale-leave-to {
    opacity: 0;
    transform: scale(0.95);
}
.scale-enter-to, .scale-leave-from {
    opacity: 1;
    transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 { font-size: clamp(2.2rem, 6vw + 1rem, 3.5rem); }
    h2 { font-size: clamp(1.8rem, 5vw + 1rem, 2.8rem); }
    h3 { font-size: clamp(1.4rem, 4vw + 1rem, 2rem); }
    p { font-size: 1rem; }

    .site-header .container {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .main-nav ul {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: var(--spacing-lg) 0;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    .site-footer .footer-nav ul {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}

/* Nature-inspired elements */
.leaf-pattern-bg {
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L60 30 L100 50 L60 70 L50 100 L40 70 L0 50 L40 30 Z" fill="%2397BF94" opacity="0.05"/></svg>');
    background-size: 80px 80px;
    background-repeat: repeat;
}

.soft-gradient-overlay {
    position: relative;
}
.soft-gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(248, 251, 248, 0) 0%, rgba(248, 251, 248, 0.5) 75%, rgba(248, 251, 248, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Custom scrollbar for a touch of elegance */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-background);
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary);
    border-radius: 10px;
    border: 2px solid var(--color-background);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-primary);
}<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;
    }
}