:root {
    /* Colors */
    --primary-color: #0F52BA; /* Deep Blue */
    --secondary-color: #ADD8E6; /* Light Blue */
    --accent-color: #20B2AA; /* Light Sea Green */
    --background-color: #F0F8FF; /* Alice Blue */
    --footer-bg-color: #0A3D62; /* Dark Blue Gray */
    --text-color: #1a202c;
    --heading-color: #0F52BA; /* Primary for headings */
    --glass-light: rgba(255, 255, 255, 0.4);
    --glass-dark: rgba(255, 255, 255, 0.2);

    /* Section Backgrounds */
    --section-bg-1: #D1ECF1;
    --section-bg-2: #B3D9FF;
    --section-bg-3: #A8DADC;
    --section-bg-4: #9BC2E6;
    --section-bg-5: #87CEEB;
    --section-bg-6: #7BC6DD;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Typography */
    --font-family-sans: 'Poppins', sans-serif;
    --font-family-serif: 'Playfair Display', serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;

    /* Border Radius */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    --border-radius-circle: 50%;

    /* Shadows (for neumorphism-like soft shadows) */
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll from glassmorphism */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-serif);
    color: var(--heading-color);
    line-height: 1.2;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

/* Utility Classes (complementing Tailwind) */
.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);
}

/* 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-sm);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    border-radius: var(--border-radius-lg); /* More rounded for this style */
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(15, 82, 186, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(15, 82, 186, 0.3);
    transform: translateY(-2px);
}

/* Glassmorphism Card Style */
.card {
    background: var(--glass-light);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--glass-light);
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
}

/* Section Backgrounds */
.section-1 { background-color: var(--section-bg-1); }
.section-2 { background-color: var(--section-bg-2); }
.section-3 { background-color: var(--section-bg-3); }
.section-4 { background-color: var(--section-bg-4); }
.section-5 { background-color: var(--section-bg-5); }
.section-6 { background-color: var(--section-bg-6); }

.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); }

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-control {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 82, 186, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer Styling */
.footer {
    background-color: var(--footer-bg-color);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

/* Alpine.js Transitions (example, adapt as needed) */
[x-cloak] { display: none !important; }

.fade-in-transition {
    transition: opacity 0.3s ease-out;
}
.fade-in-transition[x-transition:enter] { opacity: 0; }
.fade-in-transition[x-transition:enter-start] { opacity: 0; }
.fade-in-transition[x-transition:enter-end] { opacity: 1; }
.fade-in-transition[x-transition:leave] { opacity: 1; }
.fade-in-transition[x-transition:leave-start] { opacity: 1; }
.fade-in-transition[x-transition:leave-end] { opacity: 0; }

/* Modern Clean Gradient Glassmorphism specific enhancements */
body::before {
    content: '';
    position: fixed;
    top: -50vh;
    left: -50vw;
    width: 200vw;
    height: 200vh;
    background: radial-gradient(circle at 10% 20%, var(--secondary-color) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, var(--primary-color) 0%, transparent 40%);
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
    animation: subtleRotate 60s infinite linear;
}

@keyframes subtleRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-section {
    position: relative;
    text-align: center;
    padding: 8rem var(--spacing-md);
    background: linear-gradient(135deg, var(--section-bg-1) 0%, var(--section-bg-3) 100%);
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    background: var(--glass-light);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-glass);
    z-index: 0;
}

.hero-section::before {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    transform: rotate(25deg);
}

.hero-section::after {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: 10%;
    transform: rotate(-35deg);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-md);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-section {
        padding: 5rem var(--spacing-md);
    }
    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-section::before,
    .hero-section::after {
        display: none; /* Hide complex shapes on small screens */
    }
}

/* Custom Scrollbar for a cleaner look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}


/* 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;
    }
}