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

:root {
    /* 4-color modern contrast palette */
    --primary-color: #2E86AB;    /* Blue - Primary accents */
    --secondary-color: #F24236;  /* Coral/Red - Buttons and CTAs */
    --bg-color: #F8F9FA;         /* Off-white background */
    --text-color: #1A1A24;       /* Dark text */
    
    --font-heading: 'Oswald', sans-serif;
    --font-text: 'Roboto', sans-serif;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.btn-main {
    background-color: var(--secondary-color);
    color: #ffffff;
    font-family: var(--font-heading);
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-main:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Background image overlays */
.hero-overlay {
    background: linear-gradient(rgba(26, 26, 36, 0.8), rgba(46, 134, 171, 0.7));
}

/* Mobile Menu */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background-color: #ffffff;
}

#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

/* Features icons */
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(46, 134, 171, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1);
}

/* Numbered Steps */
.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(242, 66, 54, 0.2);
    line-height: 1;
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: -1;
}

/* List dot */
.list-dot {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-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(--secondary-color);
    color: #ffffff;
    border-radius: 4px;
    border: none;
    display: inline-block;
    font-weight: bold;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

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

/* FAQ Accordion */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Policies */
.policy-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.policy-content {
    flex: 1;
}