:root {
    --primary-orange: #f3811f;
    --light-green: #e1f0d7;
    --dark-green: #2d5a27;
    --text-dark: #222222;
    --white: #ffffff;
}

.faq-page {
    background-color: var(--white);
}

.faq-header {
    text-align: center;
    padding: 50px 10% 60px;
    background-color: #032475;
    margin-bottom: 50px;
}

.main-title {
    color: var(--primary-orange);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: inline-block;
    top: 70%;
    transform: translateY(-70%);
    margin-left: 15px;
    margin-right: 10px;
}

.sub-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 40px;
}

.faq-item {
    margin-bottom: 15px;
    background-color: var(--light-green);
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-green);
    cursor: pointer;
}

.faq-question i {
    font-size: 2rem;
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-answer p {
    padding: 10px 30px 30px;
    color: var(--text-dark);
    font-size: 1.4rem;
    line-height: 1.6;
}

.faq-item.active {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

@media (max-width: 1024px) {
    .main-title { font-size: 2.8rem; }
    .faq-question { font-size: 1.4rem; }
    .faq-answer p { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    .main-title { font-size: 2.2rem; }
    .sub-title { font-size: 1.1rem; }
    .faq-question { padding: 20px; font-size: 1.2rem; }
    .faq-answer p { padding: 10px 20px 20px; font-size: 1.1rem; }
}

.hero-logo {
    position: relative;
    display: inline-block;
    height: 100px;
}

@media screen and (max-width: 1108px) {
    .sponsors-header {
        height: 200px;
    }

    .section-header {
        top: 0;
        transform: translateY(0);
        position: relative;
    }

    .hero-logo {
        display: inline-block;
    }

    .programs-header h1 {
        font-size: 2.5rem;
        top: 0;
        transform: translateY(0);
    }

    .main-title {
        font-size: 2.2rem;
        top: 70%;
        transform: translateY(-70%);
    }
}

@media screen and (max-width: 950px) {
    .hero-logo {
        display: none;
    }

    .main-title {
        font-size: 2.2rem;
        top: 0%;
        transform: translateY(0%);
    }
}

@media screen and (max-width: 480px) {
    .programs-header h1 {
        font-size: 1.6rem;
    }
}