/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(rgba(10, 31, 68, 0.9), rgba(10, 31, 68, 0.9)), url('../../images/cta.png') center/cover no-repeat;
    color: var(--neutral);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(24, 255, 255, 0.2) 100%);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--neutral);
}

.cta h2:after {
    background-color: var(--accent);
    left: 50%;
    transform: translateX(-50%);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}