.about-hero {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

.institution-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background-color: rgba(25, 135, 84, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
}

.stat-label {
    font-size: 0.9rem;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.resources-box {
    background-color: white;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 1rem;
    }

    .stat-item {
        padding: 0.8rem 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline-year {
        left: -40px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}
.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.list-group-item {
    border-left: 0;
    border-right: 0;
}

.list-group-item:first-child {
    border-top: 0;
}

.list-group-item:last-child {
    border-bottom: 0;
}

p, h1, h2, h3, h4, h5, h6, li, i {
    letter-spacing: 0.5px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .display-6 {
        font-size: 1.8rem;
    }
}