/* About SHASAN Section */

.about-section {
    background: linear-gradient(to right, #ffffff, #f1faff);
    padding: 70px 20px;
    text-align: center;
}

.about-section h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 32px;
    color: #002b5c;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-section p.description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

.about-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    max-width: 300px;
    flex: 1;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #138808;
}

.feature-title {
    font-size: 18px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.feature-desc {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section h2 {
        font-size: 26px;
    }

    .feature-card {
        max-width: 100%;
    }
}
