.love-section {
    /* Translates: bg-gradient-to-br from-rose-50 via-white to-sky-50 */
    background: linear-gradient(135deg, #fff1f2 0%, #ffffff 50%, #f0f9ff 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* --- Custom Content Boxes --- */
/* Box 1: Glassmorphism Quote */
.glass-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: 1.5rem;
}

.glass-quote-box p {
    color: #5c8272;
    font-size: 1.25rem; /* text-xl */
    font-style: italic;
    margin: 0;
    line-height: 1.75;
}

/* Box 2: Gradient Statement */
.gradient-statement-box {
    /* Translates: bg-gradient-to-r from-sage-100 to-rose-100 */
    background: linear-gradient(to right, #e8f0ec 0%, #fce8eb 100%);
    border: 1px solid #d1dcd7;
    border-radius: 1rem; /* rounded-2xl */
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.gradient-statement-box p {
    color: #2d3f37;
    font-size: 1.125rem; /* text-lg */
    margin: 0;
    line-height: 1.75;
}

/* --- Image Card Area --- */

.image-card1 {
    aspect-ratio: 1 / 1; /* aspect-square */
    border-radius: 1rem; /* rounded-2xl */
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    margin-bottom: 1.5rem;
    background-color: #f8f9fa; /* placeholder bg */
}

.image-card1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-caption {
    text-align: center;
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: #5c8272;
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
    .love-section {
        padding-top: 8rem; /* md:py-32 */
        padding-bottom: 8rem;
    }
}