.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1c1917 100%);
    padding: 6rem 1.5rem;
    text-align: center;
    color: #FFFFFF;
    border-radius: 16px;
    margin: 4rem auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    font-family: var(--font-family-serif);
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

/* Consistent 3D Button Style */
.btn-3d {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-family-sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    top: 0;
    box-shadow: 0 6px 0 var(--primary-color-dark);
    transition: all 0.2s ease;
}

.btn-3d:hover {
    top: 2px;
    box-shadow: 0 4px 0 var(--primary-color-dark);
    background-color: var(--primary-color-hover);
}

.btn-3d:active {
    top: 6px;
    box-shadow: 0 0 0 var(--primary-color-dark);
    background-color: var(--primary-color-active);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.75rem;
    }

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