.hero_area {
    margin-bottom: 2rem;
}

.wellness-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.wellness-content h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #8b4513;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.quote-highlight {
    font-family: 'Great Vibes', cursive;
    font-size: 1.6rem;
    color: #d4af37;
    font-weight: bold;
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
}

.wellness-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.wellness-image {
    display: block;
    max-width: 70%;
    height: auto;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.wellness-image:hover {
    transform: scale(1.02);
}

.final-quote {
    font-family: 'Great Vibes', cursive;
    font-size: 1.4rem;
    color: #8b4513;
    text-align: center;
    margin: 2rem 0;
    font-style: italic;
}

.final-quote strong {
    color: #d4af37;
    font-size: 1.6rem;
}

@media (max-width: 768px) {
    .wellness-content h1 {
        font-size: 2rem;
    }
    
    .quote-highlight {
        font-size: 1.3rem;
    }
    
    .wellness-content p {
        font-size: 1rem;
    }
    
    .wellness-image {
        max-width: 90%;
    }
    
    .final-quote {
        font-size: 1.2rem;
    }
}