  
        /* CTA Section */
        .cta-section {
            text-align: center;
             padding: clamp(30px, calc( (70 / 1920) * 100vw ), 70px) 0;
            background: #f8f9fa;
        }
        
        .cta-section h2 {
            font-size: clamp(24px, 1.9vw, 36px);
            margin-bottom: 20px;
            color: #1a2b3c;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: clamp(14px, 0.9vw, 17px);
            color: #666;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        
        .btn-primary {
            background: var(--color-primary);
            color: #fff;
        }
        
        .btn-primary:hover {
            background: #014099bf;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgb(0 104 255 / 30%);
        }
        
        .btn-secondary {
            background: #1a2b3c;
            color: white;
        }
        
        .btn-secondary:hover {
            background: #0d1a26;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 43, 60, 0.3);
        }

@media(max-width:991px){
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .cta-section p {
        margin: 0 auto 20px;
    }
}