
/* cta seciton  */
.cta-banner-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.cta-card {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #cc0000 0%, #a30000 100%);
    padding: 50px 60px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 35px rgba(204, 0, 0, 0.2);
}

/* Text Content */
.cta-text h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

/* Buttons */
.cta-actions {
    display: flex;
    gap: 20px;
}

.btn-prime {
    background-color: #ffffff;
    color: #cc0000;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: transform 0.2s, background 0.3s;
}

.btn-prime:hover {
    background-color: #ffe0e0;
    transform: scale(1.05);
    color: #ff0000;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: border 0.3s, background 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        gap: 30px;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}