/* About Section */
.section--about {
    background-color: #f7f7f7;
    padding: 80px 20px;
}

.section--about .section__content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #3679c8;
    margin: 15px auto 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-card__icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.about-mission {
    background: linear-gradient(135deg, #3679c8 0%, #2a5a9a 100%);
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
}

.mission-text {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .mission-text {
        font-size: 16px;
    }
}
