/* --- Hero Banner --- */
.faqs-hero {
    background: linear-gradient(rgba(0, 34, 68, 0.9), rgba(0, 34, 68, 0.9)), 
                url('https://images.unsplash.com/photo-1557426272-fc759fdf7a8d?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    padding: 6rem 0;
    text-align: center;
    color: #ffffff;
    border-bottom: 5px solid #d9232d;
}

.faqs-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.faqs-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #e6f2ff;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: #d9232d;
    margin: 1.5rem auto;
}

.small-divider-left {
    height: 3px;
    width: 50px;
    background-color: #d9232d;
    margin: 1rem 0 2rem 0;
}

/* --- FAQs Section --- */
.faqs-section {
    padding: 5rem 0 7rem;
    background-color: #f4f7f6;
}

.faqs-container {
    background-color: #ffffff;
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border-top: 5px solid #002244;
    max-width: 900px;
    margin: 0 auto;
}

.faqs-header-text {
    margin-bottom: 2.5rem;
}

.faqs-header-text h2 {
    color: #002244;
    font-size: 2.2rem;
}

.faqs-header-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- Accordion Styling --- */
.accordion-wrapper {
    margin-top: 2rem;
}

.accordion {
    background-color: #f9f9f9;
    color: #002244;
    cursor: pointer;
    padding: 1.5rem 2rem;
    width: 100%;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.3s;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Add the plus icon */
.accordion:after {
    content: '\002B'; /* Unicode for plus sign */
    color: #d9232d;
    font-weight: bold;
    font-size: 1.5rem;
    margin-left: 15px;
    transition: 0.3s;
}

/* Change to minus icon when active */
.active-acc:after {
    content: "\2212"; /* Unicode for minus sign */
}

.accordion:hover, .active-acc {
    background-color: #f0f7ff;
    border-color: #cce0ff;
}

/* The hidden content panel */
.panel {
    padding: 0 2rem;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-left: 3px solid #d9232d;
    margin-bottom: 15px;
    margin-top: -10px;
    border-radius: 0 0 6px 6px;
}

.panel p {
    padding: 1.5rem 0;
    color: #444;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.panel ul {
    padding: 0 0 1.5rem 1.5rem;
    color: #444;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-top: -0.5rem;
}

.panel ul li {
    margin-bottom: 0.5rem;
}

/* --- Download Section --- */
.download-section {
    text-align: center;
    padding: 5rem 0;
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
}

.download-section h3 {
    color: #002244;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.download-section p {
    color: #555;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.download-btn-large {
    display: inline-block;
    background-color: #d9232d;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(217, 35, 45, 0.2);
    transition: all 0.3s ease;
}

.download-btn-large:hover {
    background-color: #002244;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 34, 68, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .faqs-container {
        padding: 2rem 1.5rem;
    }
    .accordion {
        padding: 1.2rem;
        font-size: 1rem;
    }
    .panel {
        padding: 0 1.2rem;
    }
}