
/* --- Districts / Service Areas --- */
.districts {
    background-color: var(--light-bg);
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.district-card {
    background: #fff;
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    border: 1px solid #eee;
}

.district-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.15); /* Brand color shadow */
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* --- FAQ Section --- */
.faq {
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-bg);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* For simplicity in this static version, we'll keep answers open or use simple CSS hover/focus-within tricks or just text */
.faq-answer p {
    margin-top: 0.5rem;
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Just display them for now since we haven't added JS for toggle yet */
.faq-answer {
    max-height: 1000px; /* Force open for now or we add JS later */
}

/* --- Secondary Page Styles (Generic) --- */
.page-header {
    background: linear-gradient(rgba(29, 53, 87, 0.9), rgba(29, 53, 87, 0.9)), url('assets/hero-bg.jpg'); /* Fallback or reuse hero image */
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-breadcrumb {
    color: #ccc;
    font-size: 0.9rem;
}

.page-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.page-content {
    padding: 60px 0;
}

.page-content h2 {
    color: var(--dark-bg);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}
.more-link-static {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.more-link-static:hover {
    color: #c92a34; /* Darker red */
}
