.heart-recovery-section {
    /* Translates: bg-gradient-to-br from-sky-100 via-white to-sage-50 */
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 50%, #f4f7f5 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* --- Typography --- */
.heading-main {
    color: #2d3f37;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 2.5rem; /* text-4xl */
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-lead {
    color: #3d574d;
    font-size: 1.25rem; /* text-xl */
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-family: var(--font-01);
}

.text-body-custom {
    color: #3d574d;
    font-size: 1.125rem; /* text-lg */
    margin-bottom: 2rem;
    line-height: 1.75;
    font-family: var(--font-01);
}

/* --- Glassmorphism Quote Box --- */
.quote-box {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid #d1dcd7;
    border-radius: 1rem; /* rounded-2xl */
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.quote-text2 {
    color: #5c8272;
    font-size: 1.25rem;
    font-style: italic;
    margin: 0;
    line-height: 1.75;
}

/* --- Questions List --- */
.question-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem; /* gap-3 */
    margin-bottom: 1rem;
}
.question-item i{
    color: #5c8272!important;
}
.question-icon {
    color: #5c8272;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.question-text {
    color: #3d574d;
    font-size: 1.125rem; /* text-lg */
    font-style: italic;
    margin: 0;
    font-weight: 500;
}
.co3{
    color: #3d574d!important;
    font-size: 24px;
}

/* --- Right Card --- */
.recovery-card {
    background-color: #ffffff;
    border-radius: 1rem; /* rounded-2xl */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    overflow: hidden;
    width: 100%;
    max-width: 500px; /* max-w-lg */
    margin: 0 auto;
}

.card-img-container {
    aspect-ratio: 1 / 1; /* aspect-square */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-label {
    color: #5c8272;
    font-size: 0.875rem; /* text-sm */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bottom-icon {
    color: #5c8272;
    font-size: 1.875rem; /* text-3xl */
}

.logo-placeholder {
    width: 48px; /* w-12 */
    height: 48px; /* h-12 */
    object-fit: contain;
}

/* Responsive */
@media (min-width: 768px) {
    .heart-recovery-section {
        padding-top: 8rem; /* md:py-32 */
        padding-bottom: 8rem;
    }
    .heading-main {
        font-size: 3rem; /* md:text-5xl */
    }
}