
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* Hero Section Responsive */
        .hero-section {
            height: 450px;
        }

        @media (max-width: 768px) {
            .hero-section {
                height: 380px;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                height: 350px;
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        .bg-opacity-10 {
            background-color: rgba(255, 255, 255, 0.1) !important;
            backdrop-filter: blur(10px);
        }

        .card:hover {
            transform: translateY(-5px);
        }

        /* Timeline responsive */
        @media (max-width: 768px) {
            .timeline-line {
                display: none !important;
            }
        }