﻿.hero-section {
    align-items: center;
    background-image: url("/images/woman&baby.png");
    background-position: center;
    background-size: cover;
    display: flex;
    height: 60vh;
    justify-content: center;
    position: relative;
    z-index: 0;
    padding: 40px 20px;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 32%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    color: #333;
    font-family: "Segoe UI, sans-serif";
    text-align: center;
    padding: 30px 40px;
    max-width: 400px;
    box-sizing: border-box;
    z-index: 10;
}

    .hero-overlay h2 {
        color: #2a4d8f;
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-overlay p {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

@media (max-width: 960px) {
    .hero-section {
        height: 30vh;
    }

    .hero-overlay {
        position: absolute;
        top: 20px !important;
        left: 20px !important;
        right: auto !important;
        transform: none !important;
        text-align: left;
        max-width: 90%;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.85);
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

        .hero-overlay h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .hero-overlay p {
            font-size: 16px;
            line-height: 1.4;
        }
}