/* ===========================================
   CTA Section - 배경 및 버튼 호버 색상
   =========================================== */

/* CTA Section 배경 - #1B3559 */
.cta-section {
    background: #1B3559 !important;
    background-image: none !important;
    color: white !important;
    text-align: center;
}

/* CTA 제목 */
.cta-title {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

/* CTA 설명 */
.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: #ffffff !important;
}

/* CTA 버튼 컨테이너 */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Section 내 Primary 버튼 */
.cta-section .btn-primary,
.cta-section .btn {
    background: white !important;
    color: #1B3559 !important;
    border: 2px solid white !important;
    border-radius: 0 !important;
}

/* CTA Section 내 Primary 버튼 호버 - #099F97 */
.cta-section .btn-primary:hover,
.cta-section .btn:hover {
    background: #099F97 !important;
    color: #ffffff !important;
    border-color: #099F97 !important;
}

/* CTA Section 내 Outline 버튼 */
.cta-section .btn-outline {
    background: transparent !important;
    border-color: white !important;
    color: white !important;
    border-radius: 0 !important;
}

/* CTA Section 내 Outline 버튼 호버 */
.cta-section .btn-outline:hover {
    background: #099F97 !important;
    color: #ffffff !important;
    border-color: #099F97 !important;
}
