:root {
    /* Colors */
    --primary-color: #50B3A4;
    --secondary-color: #F0EAD6;
    --background-color: #F8F8F8;
    --footer-bg-color: #2E4F4F;
    --button-color: #50B3A4;
    --heading-color: #2E4F4F;
    --body-text-color: #555555;
    --accent-color: #50B3A4;

    --section-bg-1: #FFFFFF;
    --section-bg-2: #E6F7F7;
    --section-bg-3: #F0EAD6;
    --section-bg-4: #F8FBF8;

    /* Fonts */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Lato', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 2rem;
    --border-radius-full: 9999px;

    /* Shadows */
    --shadow-clay-sm: 0px 4px 8px rgba(0, 0, 0, 0.08), inset 0px -2px 4px rgba(0, 0, 0, 0.05);
    --shadow-clay-md: 0px 8px 15px rgba(0, 0, 0, 0.1), inset 0px -4px 8px rgba(0, 0, 0, 0.08);
    --shadow-clay-lg: 0px 12px 25px rgba(0, 0, 0, 0.15), inset 0px -6px 12px rgba(0, 0, 0, 0.1);
    --shadow-header: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--body-text-color);
    background-color: var(--background-color);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--heading-color);
    line-height: 1.2;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.4rem;
}

h6 {
    font-size: 1.1rem;
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: darken(var(--accent-color), 10%);
    transform: translateY(-1px);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.section-padding {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius-full);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-clay-md);
    position: relative;
    overflow: hidden;
    color: #FFFFFF; /* Default text color for buttons */
}

.btn-primary {
    background-color: var(--button-color);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: darken(var(--button-color), 8%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-clay-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--heading-color);
}

.btn-secondary:hover {
    background-color: darken(var(--secondary-color), 5%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-clay-lg);
}

/* Card Styles */
.card {
    background-color: var(--section-bg-1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-clay-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05); /* Subtle border for definition */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-clay-md);
}

/* Header */
.header {
    background-color: var(--section-bg-1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-header);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.scrolled {
    box-shadow: var(--shadow-header);
    transform: translateY(0); /* Ensure it stays in place */
}

.header .logo {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--heading-color);
    text-decoration: none;
}

.header .nav-link {
    margin-left: var(--spacing-md);
    font-family: var(--body-font);
    font-weight: 500;
    color: var(--body-text-color);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.header .nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.header .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.header .nav-link:hover::after {
    width: 100%;
}

/* Section Backgrounds */
.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);
}

/* Organic Shapes (using SVG as background-image or pseudo-elements) */
/* Example for a section, in a real scenario, this would be more complex with actual SVGs */
.section-with-organic-shape {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.section-with-organic-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="%23E6F7F7" d="M43.7,-64.8C58.8,-53.4,74.6,-40.8,78.2,-24.8C81.8,-8.9,73.1,10.4,63.1,26.4C53.2,42.4,41.9,55.2,27.1,64.2C12.3,73.2,-5.9,78.3,-22.3,75.7C-38.7,73.1,-53.3,62.8,-63.9,48.2C-74.6,33.5,-81.4,14.5,-76.4,-3C-71.4,-20.5,-54.6,-36.3,-38.7,-49.2C-22.8,-62.1,-7.9,-72.1,7.5,-75.4C22.8,-78.7,40.1,-75.4,43.7,-64.8Z" transform="translate(100 100)" /></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3; /* Subtle */
    z-index: -1;
    border-radius: var(--border-radius-lg); /* Example for the shape, actual SVG would define its own */
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-md);
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--body-text-color);
    background-color: var(--section-bg-1);
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.05); /* Inner shadow for depth */
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.08), 0px 0px 0px 3px rgba(var(--primary-color), 0.2);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--footer-bg-color);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) 0;
    font-size: 0.9rem;
    text-align: center;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
}

.footer a:hover {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .header {
        flex-direction: column;
        padding-top: var(--spacing-md);
        padding-bottom: var(--spacing-md);
    }

    .header .nav {
        margin-top: var(--spacing-sm);
    }

    .header .nav-link {
        margin: 0 var(--spacing-xs);
    }

    .section-padding {
        padding-top: var(--spacing-lg);
        padding-bottom: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    p {
        font-size: 1rem;
    }

    .btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 1rem;
    }
}


/* 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;
    }
}