/* About Features Section */
.about-features {
    padding: 5rem 0;
}

.about-features__header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-features__title {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-features__subtitle {
    font-size: 1.25rem;
    color: #6b7280;
}

.about-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-card__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 4rem;
    height: 4rem;
    margin-left: auto;
    margin-right: auto;
}

.feature-card__icon svg {
    width: 2rem;
    height: 2rem;
}

.feature-card__icon--blue {
    color: #0d58c6;
}

.feature-card__icon--purple {
    color: #7c3aed;
}

.feature-card__icon--green {
    color: #0d58c6;
}

.feature-card__title {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card__description {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .about-features {
        padding: 3rem 0;
    }
    
    .about-features__title {
        font-size: 1.875rem;
    }
} 
