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

:root {
    /* Color Palette */
    --primary-color: #1e3a8a; /* Deep Blue */
    --secondary-color: #0f766e; /* Teal */
    --accent-color: #f59e0b; /* Warm Orange */
    --dark-color: #111827; /* Dark Gray */
    --light-color: #f3f4f6; /* Light Gray/White */
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-text: 'Open Sans', sans-serif;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(15, 118, 110, 0.85));
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

body {
    font-family: var(--font-text);
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

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

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

.btn-primary {
    background-color: var(--accent-color);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(15, 118, 110, 0.1);
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

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

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

/* 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: 4px;
    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;
}