/* CTA Section */
.cta-section {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../image/bg/cta-footer.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem;
    position: relative;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.cta-button {
    background-color: orange;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #ffbe82;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-section {
        height: auto;
        min-height: 50vh;
        padding: 3rem 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-message {
        font-size: 1rem;
    }
}
