:root {
    /* Colors */
    --color-primary: #6B9B7E;
    --color-secondary: #D1E2C4;
    --color-accent: #8DB29F;
    --color-background: #F8FAF5;
    --color-footer-bg: #50775F;
    --color-text-dark: #333;
    --color-text-light: #F8FAF5;
    --color-section-1: #F8FAF5;
    --color-section-2: #E6F0E6;
    --color-section-3: #D1E2C4;
    --color-section-4: #B9D4BC;
    --color-section-5: #A2C6A3;

    /* Typography */
    --font-family-heading: 'Merriweather Sans', sans-serif;
    --font-family-body: 'Open Sans', sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-unit: 1rem;
    --spacing-xs: calc(0.25 * var(--spacing-unit));
    --spacing-sm: calc(0.5 * var(--spacing-unit));
    --spacing-md: var(--spacing-unit);
    --spacing-lg: calc(1.5 * var(--spacing-unit));
    --spacing-xl: calc(2 * var(--spacing-unit));
    --spacing-xxl: calc(3 * var(--spacing-unit));

    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;

    /* Shadows */
    --shadow-soft-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-soft-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-soft-lg: 0 8px 16px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-speed: 0.3s ease-out;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px; /* Ensure base font size for rem calculation */
}

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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    color: var(--color-primary);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-footer-bg); /* Deeper tone for impact */
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--color-accent);
}

strong {
    font-weight: 700;
}

/* Layout & Structure */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

section {
    padding: var(--spacing-xxl) 0;
    margin-bottom: var(--spacing-lg);
    background-color: var(--color-section-1); /* Default section background */
}

section:nth-of-type(even) {
    background-color: var(--color-section-2);
}

/* Specific section background colors */
.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); }
.section-bg-5 { background-color: var(--color-section-5); }


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius-md);
    font-family: var(--font-family-heading);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-decoration: none;
    box-shadow: var(--shadow-soft-sm);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    box-shadow: var(--shadow-soft-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-text-dark);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: var(--shadow-soft-md);
    transform: translateY(-2px);
}

/* Cards */
.card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft-md);
    padding: var(--spacing-xl);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft-lg);
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-control {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--color-secondary);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-body);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(107, 155, 126, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Header & Footer */
.header {
    background-color: var(--color-background);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-secondary);
    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-family-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.05em;
}

.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);
}

.nav-item a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: var(--spacing-xl) 0;
    text-align: center;
    margin-top: var(--spacing-xxl);
}

.footer a {
    color: var(--color-secondary);
}

.footer a:hover {
    color: var(--color-background);
}

/* Alpine.js Dynamic Elements */
[x-cloak] {
    display: none !important;
}

/* Subtle fade-in/fade-out for x-show */
.transition-opacity-enter {
    transition: opacity var(--transition-speed);
    opacity: 0;
}

.transition-opacity-enter-active {
    opacity: 1;
}

.transition-opacity-leave {
    transition: opacity var(--transition-speed);
    opacity: 1;
}

.transition-opacity-leave-active {
    opacity: 0;
}

/* Focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: var(--border-radius-sm);
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .header-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    section {
        padding: var(--spacing-xl) 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }

    .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
}

/* Custom Enhancements for "Modern, clean, minimalist with natural tones and a focus on health and tranquility" */

/* Soft, organic textures for background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(209, 226, 196, 0.1) 0%, transparent 30%),
                radial-gradient(circle at bottom right, rgba(107, 155, 126, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.7;
}

/* Enhanced focus state for interactive elements */
.btn:focus-visible, .form-control:focus-visible, a:focus-visible {
    outline-color: var(--color-primary);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(107, 155, 126, 0.3);
}

/* Subtle hover effect for cards and interactive blocks */
.card, .interactive-block {
    position: relative;
    overflow: hidden;
}

.card:hover::after, .interactive-block:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--color-primary-rgb, 107, 155, 126), 0.05); /* Lighter overlay */
    pointer-events: none;
    transition: background var(--transition-speed);
}

/* Define RGB values for primary color for use in rgba */
:root {
    --color-primary-rgb: 107, 155, 126;
}

/* Placeholder for images with a natural, calm aesthetic */
.img-placeholder {
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-md);
    aspect-ratio: 16/9; /* Common aspect ratio */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-family: var(--font-family-heading);
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Soft, rounded borders for images within content */
img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft-sm);
}

/* Utility classes for alignment (if not using Tailwind's flex/grid directly) */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.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;
    }
}<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;
    }
}