/* --- About Page Styles --- */

#page-about {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

#page-about h2,
#page-about h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Page Header Override for About specific styles if needed */
#page-about .page-header {
    background-color: var(--primary);
    background-blend-mode: overlay;
    margin-bottom: 0;
}

#page-about .page-header p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
    font-weight: 400;
    color: #eee;
}

/* About Intro */
.about-intro {
    padding: 50px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid var(--secondary);
}

.about-text p {
    font-size: 14px;
    color: #444;
    text-align: justify;
    margin-bottom: 15px;
}

.about-image img {
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

/* Vision & Mission */
.vision-mission-section {
    padding: 50px 0;
    background-color: var(--light-grey);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.vm-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.vm-icon {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.vm-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* About Details Rows */
.about-details {
    padding: 60px 0;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row.row-reverse .detail-content {
    order: 2;
}

.detail-row.row-reverse .detail-image {
    order: 1;
}

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(6, 59, 144, 0.1);
    /* light primary */
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 15px;
}

.detail-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark);
}

.detail-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
}

.detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive About Page */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .detail-row.row-reverse .detail-content {
        order: 1;
        /* Reset order for stacking */
    }

    .detail-row.row-reverse .detail-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }
}