
.problems-page {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.problems-hero {
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    background: linear-gradient(#55637f, #111827, #55637f);
    color: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
    text-align: center;
    margin-bottom: 3rem;
}

    .problems-hero .btn-light {
        background-color: #ffffff;
        color: #111827; /* very dark gray text */
        border: none;
        font-weight: 600;
    }

        .problems-hero .btn-light:hover {
            background-color: #f2f4f8; /* subtle hover */
            color: #0d172a;
        }

    .problems-hero h1 {
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .problems-hero p {
        max-width: 720px;
        margin: 0 auto 1.5rem auto;
        font-size: 1.40rem;
        opacity: 0.95;
    }

.problems-section-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.problems-intro {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}



@media (max-width: 767.98px) {
    .problem-card h3 {
        font-size: 1.1rem;
    }

    .problem-body {
        font-size: 0.98rem;
    }
}

@media (max-width: 991.98px) {
    .problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .problems-hero {
        padding: 2.2rem 1.5rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1.5rem 1.4rem 1.6rem;
    box-shadow: 0 10px 30px rgba(10, 30, 70, 0.08);
    border: 1px solid rgba(13, 71, 161, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.problem-label {
    font-size: 1.20rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d32f2f;
    margin-bottom: 0.4rem;
}

.solution-label {
    font-size: 1.20rem; /* up from 0.78rem */
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2e7d32;
    margin-top: 0.8rem;
    margin-bottom: 0.3rem;
}

.problem-card h3 {
    font-size: 1.40rem; /* up from 1rem */
    font-weight: 600;
    margin-bottom: 0.55rem; /* more breathing room */
}

.problem-quote {
    font-size: 1.20rem; /* up from 0.9rem */
    color: #333; /* higher contrast */
    border-left: 3px solid rgba(25, 118, 210, 0.25);
    padding-left: 0.7rem;
    margin: 0.2rem 0 0.6rem 0;
}

.problem-body {
    font-size: 1.20rem; /* up from 0.93rem */
    color: #333;
    line-height: 1.55; /* easier reading */
    margin-bottom: 0;
}

.problems-summary {
    max-width: 820px;
    margin-bottom: 3rem;
}

    .problems-summary ul {
        padding-left: 1.2rem;
    }

    .problems-summary li {
        margin-bottom: 0.4rem;
    }

.problems-cta {
    text-align: center;
    max-width: 640px;
}

    .problems-cta h2 {
        font-weight: 700;
        margin-bottom: 0.6rem;
    }

    .problems-cta p {
        font-size: 1rem;
        color: #444;
        margin-bottom: 1.3rem;
    }
