  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden !important;
        }
        
        .ind-flag {
            width: 30px;
            height: auto;
            margin-left: 10px;
            display: inline-block;
            vertical-align: middle;
        }
        
        .header-gradient {
            background: linear-gradient(90deg, blue 0%, rgba(40,40,40,1) 100%);
        }
        
        .accordion-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .accordion.active .accordion-answer {
            max-height: 500px;
        }
        
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: white;
            transition: all 0.3s ease-in-out;
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .burger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        
        .burger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        
        /* Animations for headlines */
        @keyframes slideDown {
            0% { transform: translateY(-20px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }
        
        .headline-text {
            animation: slideDown 0.5s ease-out;
        }
        
        /* Logo fade animation */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .logo-fade {
            animation: fadeIn 1s ease-in-out forwards;
        }