@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Oswald:wght@400;500;700&display=swap');

:root {
    --primary-color: #0284c7; /* Blue-600 */
    --secondary-color: #eff6ff; /* Blue-50 */
    --accent-color: #10b981; /* Emerald-500 */
    --dark-color: #1e293b; /* Slate-800 */
    --bg-color: #ffffff;
    --text-color: #334155; /* Slate-700 */
    
    --gradient-primary: linear-gradient(135deg, #0284c7 0%, #10b981 100%);
    --gradient-overlay: linear-gradient(rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.8));
    
    --font-heading: 'Oswald', sans-serif;
    --font-text: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

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

.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }
.bg-dark { background-color: var(--dark-color); }

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.3);
    transform: translateY(-2px);
}

/* Custom List Bullets */
.custom-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.custom-list-bullet {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}
.mobile-menu.active {
    display: flex;
}

/* 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.3);
}

.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: inherit;
    transition: all 0.3s ease;
}

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

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

/* Header & Footer Shadows */
.header-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Input Focus */
input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}