.features-section {
    padding: 1rem 2rem 4rem 2rem;
    background-color: var(--color-bg);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.features-outer-box {
    padding: 3rem;
    border: 2px solid #00f6fe;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 246, 254, 0.2), inset 0 0 10px rgba(0, 246, 254, 0.1);
    background: rgba(1, 6, 28, 0.6);
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    animation: featuresBoxGlow 4s ease-in-out infinite alternate;
}

@keyframes featuresBoxGlow {
    from {
        box-shadow: 0 0 15px rgba(0, 246, 254, 0.2), inset 0 0 10px rgba(0, 246, 254, 0.1);
        border-color: rgba(0, 246, 254, 0.5);
    }

    to {
        box-shadow: 0 0 30px rgba(0, 246, 254, 0.5), inset 0 0 15px rgba(0, 246, 254, 0.2);
        border-color: rgba(0, 246, 254, 1);
    }
}

.features-title {
    color: #00f6fe;
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2.5px solid #00f6fe;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 246, 254, 0.7);
}

/* Middle card glow if needed specifically */
.feature-card.highlight {
    box-shadow: 0 0 30px rgba(0, 246, 254, 0.5);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper img,
.feature-icon-wrapper svg {
    width: 60px;
    height: 60px;
}

.feature-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
    min-height: 4.5rem;
    /* Ensures consistent alignment for paragraphs */
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card p {
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
    text-align: justify;
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
}