.cta-section {
    background-color: #281040;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #281040;
    opacity: 0.1;
}

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

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #F2F2F2;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: #F2F2F2;
}

.cta-button {
    background-color: #F2F2F2;
    color: #281040 !important;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #F2F2F2;
}

.cta-button:hover {
    background-color: #281040;
    border-color: #281040;
    color: #F2F2F2 !important;
}

.cta-button::after {
    display: none;
}

.cta-button:hover::after {
    display: none;
}

/* Animation for the section */
.cta-section .container {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
    }
}
