/* CTA Section Styling */
.cta-section {
    position: relative;
    padding: 4rem 2rem;
    margin-top: -1rem;
    /* Moves up to match Info/Features gap */
    background: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    overflow: hidden;
    z-index: 5;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 6, 28, 0.75);
    z-index: 1;
}

.cta-outer-box {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cta-header-line {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    font-size: 2.8rem;
    /* Uniform size */
}

.cta-accent {
    color: #ff4a3f;
    /* Orange-Red for "Advance Your", "with", "from" */
}

.cta-main {
    color: #00f6fe;
    /* Cyan for main text parts */
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00f6fe;
    text-decoration: none;
    border: 2.5px solid #00f6fe;
    border-radius: 8px;
    background: #01061c;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 246, 254, 0.3);
    animation: ctaBtnGlow 3s ease-in-out infinite alternate;
}

@keyframes ctaBtnGlow {
    from {
        box-shadow: 0 0 15px rgba(0, 246, 254, 0.3);
    }

    to {
        box-shadow: 0 0 30px rgba(0, 246, 254, 0.7);
    }
}

.cta-button:hover {
    background: #00f6fe;
    color: #01061c;
    box-shadow: 0 0 40px rgba(0, 246, 254, 0.9);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-header-line {
        font-size: 2.2rem;
    }
}