:root {
    --color-primary: #28B463;
    --color-secondary: #F4D03F;
    --color-background: #F8F8F8;
    --color-footer-bg: #2C3E50;
    --color-text-dark: #333333;
    --color-text-light: #FDFEFE;
    --color-accent: #3498DB; /* A complementary accent for vitality */

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;

    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;

    --shadow-soft-sm: 0 4px 8px rgba(0, 0, 0, 0.05);
    --shadow-soft-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-soft-lg: 0 15px 30px rgba(0, 0, 0, 0.1);

    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, #2ECC71 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-secondary) 0%, #F1C40F 100%);

    --section-bg-1: #FDFEFE;
    --section-bg-2: #F0F8F0;
    --section-bg-3: #E8F6F3;
    --section-bg-4: #F9F9EC;
    --section-bg-5: #F5EEF8;
    --section-bg-6: #FFF3E0;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--color-text-dark);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.2rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 600; }
h3 { font-size: 2rem; font-weight: 600; }
h4 { font-size: 1.6rem; font-weight: 500; }
h5 { font-size: 1.3rem; font-weight: 500; }
h6 { font-size: 1.1rem; font-weight: 500; }

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

a:hover {
    color: var(--color-accent);
    transform: translateY(-1px);
}

ul, ol {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

li {
    margin-bottom: var(--spacing-xs);
}

strong {
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-md);
}

/* Layout & Structure */
.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(--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); }
.section-bg-5 { background-color: var(--section-bg-5); }
.section-bg-6 { background-color: var(--section-bg-6); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: var(--shadow-soft-sm);
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-text-light);
    box-shadow: 0 8px 15px rgba(40, 180, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 20px rgba(40, 180, 99, 0.4);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--color-text-dark);
    box-shadow: 0 8px 15px rgba(244, 208, 63, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 20px rgba(244, 208, 63, 0.4);
}

.btn-outline {
    background: none;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft-sm);
}

/* Cards */
.card {
    background-color: var(--section-bg-1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-soft-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft-lg);
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--color-text-dark);
}

.form-control {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(40, 180, 99, 0.2);
    outline: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Header & Navigation */
.header {
    background-color: var(--color-background);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--spacing-lg);
}

.nav-item a {
    font-weight: 500;
    color: var(--color-text-dark);
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-item a:hover::after,
.nav-item a.active::after {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.footer p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-nav-list {
    list-style: none;
    margin: var(--spacing-md) 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-nav-item a {
    color: var(--color-text-light);
    opacity: 0.8;
}

.footer-nav-item a:hover {
    color: var(--color-primary);
    opacity: 1;
}

/* Alpine.js specific styles (for transitions) */
[x-cloak] {
    display: none !important;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.3s ease;
}
.fade-enter-from, .fade-leave-to {
    opacity: 0;
}

.slide-up-enter-active, .slide-up-leave-active {
    transition: all 0.4s ease-out;
}
.slide-up-enter-from, .slide-up-leave-to {
    opacity: 0;
    transform: translateY(20px);
}

/* Specific Organic & Vitality Elements */
.icon-wrapper {
    display: inline-flex;
    background: var(--gradient-primary);
    border-radius: 50%;
    padding: var(--spacing-sm);
    box-shadow: 0 5px 15px rgba(40, 180, 99, 0.2);
    margin-bottom: var(--spacing-md);
}

.icon-wrapper svg {
    color: var(--color-text-light);
    width: 2rem;
    height: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    background-color: var(--section-bg-1);
    box-shadow: var(--shadow-soft-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft-md);
}

.feature-item h3 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

/* Subtle Organic Shapes & Backgrounds */
.hero-section {
    background: var(--gradient-primary);
    color: var(--color-text-light);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
    margin-bottom: var(--spacing-lg);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-size: 200px;
    opacity: 0.7;
    pointer-events: none;
    animation: backgroundMove 60s linear infinite;
}

@keyframes backgroundMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 2000px 2000px;
    }
}

.hero-section h1 {
    color: var(--color-text-light);
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg) auto;
    opacity: 0.9;
}

/* Utility classes for spacing (complementary to Tailwind) */
.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); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
    .hero-section h1 { font-size: 3.2rem; }
    .hero-section p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .container { padding: 0 var(--spacing-sm); }
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    .nav-list {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
        margin-top: var(--spacing-md);
    }
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-section {
        border-bottom-left-radius: 30% 10%;
        border-bottom-right-radius: 30% 10%;
    }
    .hero-section h1 { font-size: 2.5rem; }
    .hero-section p { font-size: 1rem; }
    section { padding: var(--spacing-lg) 0; }
    .btn { padding: var(--spacing-sm) var(--spacing-md); font-size: 1rem; }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero-section h1 { font-size: 2rem; }
    .footer-nav-list {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
}


/* 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;
    }
}