.section-title,
.section-title-after {
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.about-section-nav {
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.section-title-after {
    position: relative;
}

.section-title-after::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: #2060e4;
}

.feature-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    overflow: hidden;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: #2060e4;
    margin-bottom: 20px;
}

.mission-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-section ul li::before {
    display: none !important;
}

@media (max-width: 768px) {

    .section-title,
    .section-title-after {
        margin-bottom: 30px;
    }

    .about-section-nav {
        margin-bottom: 20px;
    }

    .feature-card {
        margin-bottom: 20px;
    }
}
