:root {
    --primary-color: #0C6EBA;
    --secondary-color: #4DB6AC;
    --background-color: #ECF0F1;
    --footer-bg-color: #2C3E50;
    --button-color: #0C6EBA;
    --text-color-dark: #2C3E50;
    --text-color-light: #ECF0F1;
    --neutral-light: #F8F9FA;
    --neutral-medium: #DDDDDD;
    --neutral-dark: #E8E8E8;
    --glass-background: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.12);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 30px;
    --font-heading: 'Arial', 'Helvetica Neue', 'Helvetica', sans-serif;
    --font-body: 'Arial', 'Helvetica Neue', 'Helvetica', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color-dark);
    line-height: 1.6;
    background-color: var(--background-color);
    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(--text-color-dark);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

h1 { font-size: 2.8em; font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: 2.2em; font-weight: 700; }
h3 { font-size: 1.8em; font-weight: 600; }
h4 { font-size: 1.4em; font-weight: 600; }
h5 { font-size: 1.2em; font-weight: 500; }
h6 { font-size: 1em; font-weight: 500; }

p {
    margin-bottom: 1em;
    font-size: 1.1em;
    font-weight: 300;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Layout & Sections */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

section:nth-of-type(odd) {
    background-color: var(--neutral-light);
}

section:nth-of-type(even) {
    background-color: var(--background-color);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom-left-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-color-light);
    letter-spacing: -0.02em;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--text-color-light);
    font-weight: 500;
    font-size: 1.1em;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-color-light);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.2rem;
    border: none;
    border-radius: var(--border-radius-lg); /* Pill shape */
    font-family: var(--font-body);
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-color-light);
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%); /* Re-apply gradient to prevent color shift */
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.btn:hover::before {
    width: 200%;
    height: 200%;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Neon Glow Effect for CTA buttons */
.btn-cta {
    background: linear-gradient(45deg, #007bff, #00c6ff); /* Brighter gradient */
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.6), 0 0 30px rgba(0, 198, 255, 0.4);
}

.btn-cta:hover {
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.8), 0 0 40px rgba(0, 198, 255, 0.6), 0 0 60px rgba(0, 198, 255, 0.4);
    transform: translateY(-3px) scale(1.02);
}

/* Cards & Glassmorphism */
.card {
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color-dark);
    font-size: 1em;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--neutral-medium);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1em;
    color: var(--text-color-dark);
    background-color: var(--neutral-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-control::placeholder {
    color: #95a5a6; /* Light gray */
    opacity: 1;
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(77, 182, 172, 0.3); /* Focus outline matching secondary color */
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Icons */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
    /* Example for SVG icon styling if they are inline SVG */
    fill: currentColor; /* Allows color to be set by parent text color */
}

/* Footer */
.footer {
    background-color: var(--footer-bg-color);
    color: var(--text-color-light);
    padding: 4rem 0;
    text-align: center;
    border-top-left-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md);
}

.footer p {
    margin: 0;
    font-size: 0.95em;
    opacity: 0.9;
}

.footer .social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer .social-links a {
    color: var(--text-color-light);
    font-size: 1.5em;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
}

/* Utility classes for spacing and alignment (complementing Tailwind) */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mt-8 { margin-top: 2rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }
    h3 { font-size: 1.5em; }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .nav-menu li a {
        padding: 0.5rem 0;
    }

    .nav-menu li a::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .btn {
        padding: 0.7rem 1.8rem;
        font-size: 1em;
    }

    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.6em; }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer .social-links {
        flex-wrap: wrap;
    }
}

/* Alpine.js specific styles for transitions */
[x-cloak] { display: none !important; }

/* Example for x-transition */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s ease;
}
.fade-enter, .fade-leave-to {
    opacity: 0;
}

/* Slide in from bottom */
.slide-in-bottom-enter-active, .slide-in-bottom-leave-active {
    transition: all 0.5s ease-out;
}
.slide-in-bottom-enter, .slide-in-bottom-leave-to {
    opacity: 0;
    transform: translateY(20px);
}


/* 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;
    }
}