/* Features Section Styles */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(162, 89, 230, 0.315);
    padding: 2rem 1.5rem;
    flex: 1 1 220px;
    max-width: 260px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: #555;
    font-size: 1rem;
}