/* Call-to-Action Banner Section CSS */

/* CTA Banner Section */
.cta-banner-section {
    padding: 80px 0;
    background: transparent linear-gradient(180deg, #F9DCCD 0%, #FFCCB2 100%) 0% 0% no-repeat padding-box;
    text-align: center;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-banner-subtitle {
    font-size: 1.125rem;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-banner-button {
    background: #FE5A13;
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 90px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    border: none;
}
.cta-banner-button:hover {
    background: #FE5A13;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.cta-banner-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 90, 19, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-banner-section {
        padding: 60px 0;
    }
    
    .cta-banner-title {
        font-size: 2.25rem;
    }
    
    .cta-banner-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-banner-button {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .cta-banner-section {
        padding: 50px 0;
    }
    
    .cta-banner-title {
        font-size: 1.875rem;
    }
    
    .cta-banner-subtitle {
        font-size: 0.95rem;
    }
}
