/* CTA Section Design */
.cta-section{
    background-color: var(--primary-color);
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../../assets/images/cta.jpeg);
    background-size: cover;
    background-position: center;
}

.cta-section h2{
    color: var(--header-text);
    font-size: 2.4rem;
}

.cta-content{
    display: flex;
    width: 100%;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cta-content p{
    font-size: 1.3rem;
    color: var(--bg-secondary);
    letter-spacing: 1px;
    font-weight: 100;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* CTA Section Design */
    .cta-section h2{
        line-height: 1.2;
        font-size: 2.3rem;
    }

    .cta-content{
        gap: 30px;
    }

    
    .cta-content p{
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    /* CTA Section Design */
    .cta-section h2{
        font-size: 2.2rem;
    }

    .cta-content p{
        font-size: 1.1rem;
    }
}