.truths-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #ffe4e6 30%, #e8edeb 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* --- Header Typography --- */
.kicker2 {
    color: #5c8272;
    font-size: 0.875rem; /* text-sm */
    text-transform: uppercase;
    letter-spacing: 0.1em; /* tracking-widest */
    font-weight: 500;
    margin-bottom: 1rem;
}

/* --- Grid Cards --- */
.truth-card {
    background-color: #ffffff;
    border-radius: 1rem; /* rounded-2xl */
    padding: 2rem; /* p-8 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    border: 1px solid rgba(168, 189, 180, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.truth-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* hover:shadow-2xl */
    transform: translateY(-8px); /* hover:-translate-y-2 */
    border-color: #a8bdb4;
    background-color: #fafbfb;
}

/* --- Card Icon --- */
.icon-circle {
    width: 3.5rem; /* w-14 */
    height: 3.5rem; /* h-14 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #e8edeb 100%);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 1.5rem; /* text-2xl */
    color: #5c8272!important;
}

/* --- Card Content --- */
.card-title-custom {
    color: #2d3f37;
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-02);
}

.card-text-custom {
    color: #4a6b5e;
    line-height: 1.75; /* leading-relaxed */
    margin-bottom: 0;
    font-family: var(--font-01);
}

/* --- Bottom Statement Card --- */
.bottom-card {
    background-color: #ffffff;
    border-radius: 1.5rem; /* rounded-3xl */
    padding: 3rem; /* p-12 */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-xl */
    max-width: 48rem; /* max-w-3xl */
    margin: 5rem auto 0 auto; /* mt-20 */
}

.bottom-card-text {
    color: #3d574d;
    font-size: 1.125rem; /* text-lg */
    line-height: 1.75;
    margin-bottom: 1rem;
}

.bottom-card-divider {
    border-top: 1px solid #d1dcd7;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.bottom-card-quote {
    color: #2d3f37;
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bottom-link {
    color: #7a9b8d;
    font-size: 0.875rem; /* text-sm */
    margin-top: 1.5rem;
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
    .truths-section {
        padding-top: 8rem; /* md:py-32 */
        padding-bottom: 8rem;
    }
}