/* ======== CTA SECTION ======== */

.cta-section {
    background-color: #2563EB; /* Xekera Brand Blue */
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #E0E7FF; /* Very light blue/white */
    margin-bottom: 35px;
}

/* White Button Style */
.btn-white {
    display: inline-block;
    background-color: #fff;
    color: #2563EB; /* Blue Text */
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-white:hover {
    background-color: transparent;
    color: #fff; /* Turns white text with border on hover */
    transform: translateY(-2px);
}

/* --- RESPONSIVE --- */
@media only screen and (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}
