.cta-banner-section {
    padding: 60px 0;
}

.cta-banner {
    background: linear-gradient(135deg, #191BC5, #1e3a8a);
    border-radius: 40px;
    padding: 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(2, 87, 250, 0.2);
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 32px;
    }
}

.cta-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: white;
    color: #191BC5;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 32px;
    letter-spacing: -1px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    color: white;
}

.cta-banner p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column !important;
        width: 100%;
        gap: 16px;
    }

    .cta-buttons .btn {
        width: 100% !important;
        text-align: center;
        padding: 16px 28px;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
        font-weight: 700;
    }

    .cta-banner p {
        font-size: 13px;
        font-weight: 400;
        line-height: 1.7;
    }
}

/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 100px; /* pill shape */
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn-white {
    background: white !important;
    color: #191BC5 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    color: #0046d3 !important;
}

.btn-outline-white {
    background: transparent !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.btn-outline-white:hover {
    background: white !important;
    color: #191BC5 !important;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 32px;
    font-size: 1.1rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .btn-large {
        padding: 16px 28px;
        font-size: 14px;
    }
}
