
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
        
        body { font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
        section 
        .container {padding: 30px 160px;}
        .gradient-bg { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }
        .card-hover:hover { transform: translateY(-5px); transition: all 0.3s ease; }
        .tab-content { display: none; }
        .tab-content.active { display: block; }
        .faq-answer { display: none; }

        /* Modal Overlay */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Modal Box */
.modal-content {
    background: #fff;
    max-width: 600px;
    margin: 8% auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-content h2 {
    margin-bottom: 15px;
    color: #1A2B4D;
}

.modal-content p {
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
}

/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 600px) {
    .modal-content {
        margin: 15% 15px;
        padding: 20px;
    }
}

    