.page-banner {
    position: relative;
    background-color: #E7E7E7;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 24px 36px;
    min-height: 220px;
}

.page-banner-card {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: -72px;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    background: #FFFFFF;
    border-radius: 24px;
    padding: clamp(36px, 3.2vw, 56px) clamp(32px, 3vw, 56px) clamp(28px, 2.4vw, 44px);
    text-align: center;
    box-shadow: 0 2px 10px rgba(35, 58, 103, 0.06);
}

.page-banner-card h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 3.6vw, 52px);
    color: #233A67;
    margin: 0 0 16px;
}

.page-banner-card p {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(15px, 1vw, 18px);
    color: #1a1a1a;
    margin: 0;
}

@media (max-width: 1180px) {
    .page-banner-card {
        bottom: -48px;
        border-radius: 20px;
    }
}

@media (max-width: 600px) {
    .page-banner {
        min-height: 200px;
    }

    .page-banner-card {
        bottom: -32px;
        width: calc(100% - 40px);
        border-radius: 16px;
    }
}