/* Custom Styles for Redesigned Sections */

/* --- Stats & Highlights Grid (About Us Option 3) --- */
#about.stats-grid {
    background-color: #212529;
    /* Removed blue gradient to match header/theme color */
    color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    background-image: url("../img/map-image.png");
    /* Optional: Match contact section texture if desired, otherwise just color */
    background-repeat: no-repeat;
    background-position: center;
}

#about.stats-grid .section-heading {
    color: #fed136;
    margin-bottom: 10px;
}

#about.stats-grid .section-subheading {
    color: #a0a0a0;
    margin-bottom: 60px;
}

/* Stats Row */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.stats-card {
    background-color: #fed136;
    border: 1px solid #fed136;
    /* Gold border */
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    flex: 1 1 200px;
    /* Responsive flex */
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: #fed136;
}

.stats-icon {
    font-size: 3rem;
    color: #fed136;
    margin-bottom: 20px;
}

.stats-card .stats-icon {
    font-size: 3rem;
    color: #212529;
    /* Dark icon on gold card */
    margin-bottom: 20px;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stats-card .stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    /* Dark text on gold card */
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stats-label {
    font-size: 1rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto Slab', serif;
}

.stats-card .stats-label {
    font-size: 1rem;
    color: #343a40;
    /* Dark gray label */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto Slab', serif;
}

/* Narrative Section */
.about-narrative {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid #fed136;
}

.about-narrative h3 {
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.about-narrative p {
    color: #d0d0d0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}


/* --- FAQ Section --- */
#faq {
    padding-top: 80px;
    padding-bottom: 80px;
}

#faq .section-heading {
    color: #212529;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.faq-question {
    cursor: pointer;
    position: relative;
    padding: 15px 0;
    font-weight: 700;
    color: #343a40;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #fed136;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 1.5rem;
    color: #fed136;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-right: 20px;
}

.faq-answer p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}