/* Features Section */
.features-section {
    background: #110d3f;
    padding: 4rem 2rem;
    color: white;
    max-width: 1400px;
    margin: 0 auto;
}

.features-container {
    width: 100%;
}

.features-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    font-weight: bold;
    text-align: center;
}

/* Grid Container for both feature grids */
.features-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--primary-purple);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
    font-weight: bold;
}

.feature-content p {
    color: #e2e8f0;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Responsive Features */
@media (max-width: 1024px) {
    .features-section {
        padding: 3rem 1.5rem;
    }

    .features-grid-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-title {
        font-size: 2rem;
    }

    .feature-item {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 2rem 1rem;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .features-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}