.about-section {
    width: 92%;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0 60px;
    font-family: Arial, sans-serif;
}

.intro-box {
    text-align: center;
    margin-bottom: 40px;
}

.intro-box h1 {
    margin-bottom: 10px;
    font-size: 30px;
    color: #222;
}

.intro-box p {
    color: #555;
    font-size: 16px;
}

.about-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-card {
    background: white;
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 2px 10px #00000020;
    text-align: center;
}

.about-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

.about-card h2 {
    margin: 12px 0 6px;
    font-size: 20px;
}

.about-card p {
    color: #555;
    font-size: 15px;
}

.vision, .mission {
    background: white;
    padding: 20px;
    margin-top: 25px;
    border-radius: 14px;
    box-shadow: 0 2px 10px #00000020;
}

.vision h2,
.mission h2 {
    margin-bottom: 10px;
    font-size: 22px;
}

.mission ul {
    margin: 0;
    padding-left: 20px;
}

.mission ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Simple animation */
.fadeInUp {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
