.cta-section {
    background-color: #f8f9fa;
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-navy) 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: pulse 6s infinite;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 1rem;
    font-family: var(--title-font);
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-family: var(--text-font);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-family: var(--text-font);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-cta {
    background: transparent;
    color: var(--title-color);
    border: 2px solid var(--theme-color);
    padding: 0rem 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: var(--text-font);
}

.btn-secondary-cta:hover {
    background: var(--theme-color);
    transform: translateY(-3px);
}

/* .cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-navy) 100%);
    color: var(--title-color);
} */

.cta-section .section-title,
.cta-section .section-content {
    color: var(--title-color);
}

.light-text {
    color: var(--text-color) !important;
}

.cta-subtext {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--theme-color);
}

.cta-buttons .btn {
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
}