.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 4rem 1rem 5rem 1rem;
    background-color: #ecf2fd;
    height: 360px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5b7cec 0%, #4c6edb 100%);
    background-image: url("/web_v2/images/contact-us-hero.svg");
    background-size: cover;
    background-position: center;
    height: 360px;
}

.hero-section h1 {
    font-size: 55px;
}

.hero-section p {
    max-width: 500px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-section {
        padding: 5rem;
    }
}

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 45px;
    }

    .hero-section p {
        font-size: 18px !important;
    }
}
