/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    background: #001333;
    display: flex;
    align-items: center;
    z-index: 1000;
}

/* wrapper inside header */
.header-container {
    display: flex;
    justify-content: space-between; /* logo left, nav right */
    align-items: center;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
}

/* LOGO */
.logo img {
    height: 50px;
    object-fit: contain;
}

/* NAVIGATION */
.nav {
    display: flex;
    gap: 80px; /* spacing between links */
}

.nav a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.5px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #BE9B55;
}


/* ========== TEXT SECTION ========== */
.faq {
    background: #ffffff;
    padding: 100px 0;
}

.faq h2 {
    text-align: center;
    font-size: 70px;
    font-weight: 500;
    margin-bottom: 60px;

}


.faq-item {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.faq-item h4 {
    font-size: 24px;
    font-weight: 500;
    color: #001333;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

/* ========== GLOBAL CONTAINER (important) ========== */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}




/* ================= FOOTER ================= */
.footer {
    background: #001333;
    color: white;
    padding: 80px 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.5;
}

/* FLEX GRID */
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px; /* space between columns */
}

/* LEFT COLUMN: LOGO + TEXT + COPYRIGHT */
.footer-left {
    flex: 2; /* takes roughly twice the space of each right column */
    min-width: 250px;
}

.footer-left .footer-logo {
    width: 200px;
    margin-bottom: 30px;
}

.footer-left p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
    padding-right: 100px;
    padding-left: 10px;
}

/* RIGHT COLUMNS */
.footer-right {
    flex: 1;
    display: flex;

    min-width: 200px;
}

/* NAVIGATION COLUMN */
.footer-nav, .footer-alliance-legal {
    display: flex;
    flex-direction: column;
    margin-right: 100px;
}

.footer-nav h4, .footer-alliance h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-nav h4, .footer-legal h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.footer-nav a, .footer-alliance a {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}
.footer-nav a, .footer-legal a {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}


.footer-nav a:hover, .footer-alliance, .footer-legal a:hover {
    color: #BE9B55;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        flex-direction: column;
    }

    .footer-left, .footer-right {
        flex: 0 0 100%;
    }

    .footer-right {
        flex-direction: row;
        gap: 50px;
        margin-top: 40px;
    }

    .footer-nav, .footer-alliance, .footer-legal {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .footer-right {
        flex-direction: column;
        gap: 40px;
    }
}


