/* ==========================================================================
   Blue Banner Component
   ========================================================================== */

.blue-banner {
    position: relative;
    background-color: #0c6aa5;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
    margin: 60px 0;
}

.blue-banner__content {
    max-width: 800px;
    margin: 0 auto;
}

.blue-banner__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #ffffff;
}

.blue-banner__subtitle {
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blue-banner__action {
    display: flex;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .blue-banner {
        padding: 80px 20px;
        margin: 40px 0;
    }

    .blue-banner__title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .blue-banner {
        padding: 60px 20px;
    }

    .blue-banner__title {
        font-size: 28px;
    }
}