#problem-promise-section {
    padding: 130px 60px 70px;
    background-color: transparent; 
    z-index: 2;
    position: relative;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative; 
    z-index: 2;
}

.problem-section, .promise-section {
    text-align: center;
    margin-bottom: 20px;
}
.promise-section .section-headline {
    margin-bottom: 3rem; /* Or any value you like */
}

/* REFINED: Remove bottom margin from the last section for better spacing */
.promise-section {
    margin-bottom: 0;
}

.section-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-headline .highlight {
    color: var(--kinetic-teal);
}

.section-subheadline {
    font-size: 1.2rem;
    color: var(--starlight);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.feature-card {
    background: linear-gradient(145deg, rgba(58, 80, 107, 0.2), rgba(11, 19, 43, 0.6));
    border: 1px solid rgba(226, 232, 240, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--kinetic-teal);
    margin-bottom: 1rem;
}

.feature-card p {
    line-height: 1.6;
    opacity: 0.9;
}
/* Add to the bottom of ProblemPromise.css */
@media (max-width: 768px) {
    #problem-promise-section {
        padding: 80px 1rem 40px; /* Reduce padding for mobile */
    }
    .features-grid {
        gap: 1rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
}