:root {
    /* Colors */
    --color-primary: #2e8b57; /* Sea Green */
    --color-secondary: #8fbc8f; /* Dark Sea Green */
    --color-accent: #4682b4; /* Steel Blue for buttons */
    --color-background: #f5f5dc; /* Beige */
    --color-footer-bg: #2f4f4f; /* Dark Slate Gray */
    --color-text-dark: #333;
    --color-text-light: #f0f0f0;

    --section-bg-1: #fdf5e6; /* Old Lace */
    --section-bg-2: #e0f2f7; /* Light Cyan */
    --section-bg-3: #d4edda; /* Light Greenish Blue */
    --section-bg-4: #f3e0c0; /* Papaya Whip */
    --section-bg-5: #ceeacd; /* Pale Green */

    /* Typography */
    --font-family-heading: 'Lora', serif;
    --font-family-body: 'Open Sans', sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-unit: 0.5rem;
    --spacing-xs: calc(var(--spacing-unit) * 1);   /* 8px */
    --spacing-sm: calc(var(--spacing-unit) * 2);   /* 16px */
    --spacing-md: calc(var(--spacing-unit) * 3);   /* 24px */
    --spacing-lg: calc(var(--spacing-unit) * 5);   /* 40px */
    --spacing-xl: calc(var(--spacing-unit) * 8);   /* 64px */

    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text-dark);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    color: var(--color-primary);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-secondary);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* Layout and Sections */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

section:nth-of-type(even) {
    background-color: var(--section-bg-1);
}

section:nth-of-type(odd) {
    background-color: var(--section-bg-2); /* A slightly different background for variation */
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-family-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-link {
    font-family: var(--font-family-body);
    font-weight: 500;
    color: var(--color-text-dark);
    margin-left: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    border-bottom-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    font-family: var(--font-family-body);
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: #366d9f; /* Slightly darker steel blue */
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Cards */
.card {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-family: var(--font-family-heading);
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--color-primary);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid #ccc;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-body);
    font-size: var(--font-size-base);
    box-sizing: border-box;
    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(70, 130, 180, 0.2); /* Steel Blue with transparency */
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: var(--spacing-xl) 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
}

.footer a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* Alpine.js Transitions (Example) */
[x-cloak] {
    display: none !important;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s ease;
}
.fade-enter, .fade-leave-to /* .fade-leave-active in <2.1.8 */ {
    opacity: 0;
}

/* Scroll Animations - Placeholder for Intersection Observer or similar */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-link {
        margin: var(--spacing-xs) 0;
    }

    .logo {
        margin-bottom: var(--spacing-sm);
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .btn {
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .container {
        padding-left: var(--spacing-xs);
        padding-right: var(--spacing-xs);
    }

    .card {
        padding: var(--spacing-md);
    }
}

/* Utility Classes (if not using full Tailwind, these complement) */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.py-lg { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-xl { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

@media (max-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
}

/* Custom Effects for Premium Minimalist Nature Theme */
.hero-section {
    background: linear-gradient(135deg, var(--color-background) 0%, var(--section-bg-3) 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="a" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M-1 13h22V-1H-1zM11 13h22V-1H11z" fill="rgba(46, 139, 87, 0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(#a)"/></svg>') repeat;
    opacity: 0.7;
    z-index: 0;
    animation: subtle-shift 30s linear infinite alternate;
}

@keyframes subtle-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-content h1 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Decorative elements for sections */
.section-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
}

.feature-item {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    flex: 1 1 300px; /* Allows items to grow/shrink, with a base of 300px */
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-secondary);
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.feature-icon {
    color: var(--color-accent);
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.feature-item h3 {
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

/* Subtle border-radius variations for visual interest */
.btn {
    border-radius: var(--border-radius-md);
}

.card {
    border-radius: var(--border-radius-lg);
}

.header {
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
}

/* Glassmorphism for specific elements if desired, e.g., a modal or popup */
.glass-panel {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-lg);
}

/* Scroll Indicator (optional, for visual flair) */
.scroll-indicator {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 999;
}

.scroll-indicator:hover {
    background-color: #366d9f;
    transform: translateY(-3px);
}

/* Placeholder for custom icons or SVG integration */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

/* Active navigation link styling */
.nav-link.active {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.nav-link.active:hover {
    background-color: var(--color-primary); /* Keep primary on hover for active */
    color: var(--color-text-light);
}<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;
    }
}