/* =========================================
   ABOUT PAGE STYLES (about.css) - V3
   ========================================= */

/* --- General Section Styling --- */
.page-section {
    padding: 6rem 0;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    margin-bottom: 0.5rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.text-center { text-align: center; }

/* --- 1. Page Header --- */
.page-header {
    background-color: var(--secondary-color);
    padding: 5rem 0;
    text-align: center;
    color: var(--text-light);
}
.page-header h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* --- 2. Mission & Vision --- */
.mission-vision {
    background-color: var(--bg-soft-gray);
}
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.mission-item {
    text-align: center;
}
.mission-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.mission-item h3 {
    margin-bottom: 1rem;
}

/* --- 3. Our Leadership --- */
.leadership {
    background-color: #FFFFFF;
}
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.leader-card {
    text-align: center;
}
.leader-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--bg-soft-gray);
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    transition: transform var(--transition-speed);
}
.leader-card:hover img {
    transform: scale(1.05);
}
.leader-name {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}
.leader-title {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

/* --- 4. Key Personnel --- */
.personnel {
    background-color: var(--bg-soft-gray);
}
.personnel-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.personnel-item {
    background-color: var(--bg-light);
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    font-size: 1.1rem;
}
.personnel-item:hover {
    transform: translateX(5px);
    box-shadow: var(--box-shadow);
}

/* --- 5. Final CTA --- */
.cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 5rem 0;
}
.cta-section h2 {
    color: var(--text-light);
    font-size: 2.5rem;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 1rem auto 2rem;
}
.cta-section .btn {
    background-color: var(--bg-light);
    color: var(--primary-color);
}
.cta-section .btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .mission-grid, .personnel-list {
        grid-template-columns: 1fr;
    }
}

/* --- NEW: Detailed Services Section --- */
/* --- NEW: Detailed Services Section --- */
.detailed-services {
    background-color: #FFFFFF;
}
.service-category {
    background-color: var(--bg-soft-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}
.service-category h5 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #EAECEF;
}
.service-category ul {
    list-style: none;
    padding-left: 0;
}
.service-category ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}
.service-category ul li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    font-size: 0.9rem;
}