/* Features Section */
.features {
    padding: 0;
    width: 100%;
}

.features-grid {
    display: flex;
    width: 100%;
    min-height: 400px;
}

.feature-card {
    flex: 1;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: var(--text-color);
    position: relative;
    transition: var(--transition);
}

/* Reversed: Dark Purple Backgrounds with Pink Accents */

/* Gradient Effect using Steps of the Brand Purple */
.feature-1 {
    background-color: #6a1b9a;
    /* Lighter Purple */
    color: var(--white);
}

.feature-2 {
    background-color: #580d8b;
    /* Mid Purple */
    color: var(--white);
}

.feature-3 {
    background-color: #460080;
    /* Brand Deep Purple */
    color: var(--white);
}

.feature-icon {
    margin-bottom: 25px;
    color: var(--primary-color);
    /* Vibrant Pink Icons */
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    /* White Headings */
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    /* Soft White Text */
    max-width: 400px;
}

/* Responsive */
@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
    }

    .feature-card {
        padding: 60px 30px;
    }
}