/* ===== ABOUT PAGE ===== */
.about-page {
    padding: 80px 20px;
    background: #f9fafb;
}

.about-container {
    max-width: 1000px;
    margin: auto;
}

.about-main-title {
    font-size: 36px;
    font-weight: bold;
    color: #364C84;
    margin-bottom: 25px;
    text-align: center;
}

.about-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

/* Vision & Mission Cards */
.about-card {
    background: white;
    padding: 25px;
    border-left: 6px solid #364C84;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.about-card h3 {
    margin-bottom: 10px;
    color: #364C84;
    font-size: 22px;
}

.about-card p {
    line-height: 1.7;
    color: #444;
}

/* Detailed Section */
.about-details {
    margin-top: 40px;
    line-height: 1.9;
    color: #444;
    font-size: 17px;
}

.about-details ul {
    margin: 15px 0;
    padding-left: 20px;
}

.about-details li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-main-title {
        font-size: 28px;
    }

    .about-intro,
    .about-details {
        font-size: 16px;
    }
}

.about-image-section {
    margin: 30px 0 40px;
    text-align: center;
}

.about-image-section img {
    width: 100%;
    max-width: 1000px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

