/* --- css/faq.css --- */

/* Page Banner */
.page-banner {
    background-color: #003366;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

/* Editorial Grid Layout */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 10fr 1fr;
    gap: 20px;
    padding: 50px 0;
    background-color: #fff;
}

.main-content { grid-column: 2; }

/* Section Titles */
.section-title {
    color: #003366;
    font-size: 1.8rem;
    margin-bottom: 25px;
    border-bottom: 3px solid #ff9900;
    display: inline-block;
    padding-bottom: 5px;
}

.faq-section {
    margin-bottom: 50px;
}

/* Accordion Card Styling */
.faq-item {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item summary {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #003366;
    cursor: pointer;
    list-style: none; /* Hides default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: #ff9900;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item[open] {
    background: #fff;
    border-color: #003366;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    line-height: 1.7;
    color: #444;
    font-size: 1rem;
}

.faq-answer ul {
    margin-left: 20px;
    margin-top: 10px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .editorial-grid { grid-template-columns: 20px 1fr 20px; }
    .section-title { font-size: 1.5rem; }
}