@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Visual Variables: Modern contrasting palette */
    --accent-color: #0d9488; /* Teal 600 */
    --secondary-color: #0f766e; /* Teal 700 */
    --bg-color: #f8fafc; /* Slate 50 */
    --dark-color: #0f172a; /* Slate 900 */
    --light-gray: #e2e8f0;
    
    /* Font Variables */
    --font-heading: 'Montserrat', sans-serif;
    --font-text: 'Inter', sans-serif;
}

body {
    font-family: var(--font-text);
    background-color: var(--bg-color);
    color: var(--dark-color);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

.font-heading {
    font-family: var(--font-heading);
}

.font-text {
    font-family: var(--font-text);
}

/* Base Components */
.btn-primary {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #ffffff;
}

/* Background Overlays */
.bg-img-overlay {
    background-size: cover;
    background-position: center;
    position: relative;
}

.bg-img-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.75); /* Dark overlay */
}

.content-relative {
    position: relative;
    z-index: 10;
}

/* Numbered Badges for Lists */
.num-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    font-family: var(--font-text);
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

/* Cookie Banner (JS Version) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.4);
}

.cookie-btn {
    cursor: pointer;
    padding: 0.6rem 2rem;
    margin: 0.5rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 50px;
    border: none;
    display: inline-block;
    font-weight: bold;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-btn-alt {
    background-color: #4B5563;
}