   
        /* CSS Variables */
        :root {
            --primary-color: #fad303;
            --secondary-color: #e68900;
            --accent-color: #EBAA06CB;
            --dark-color: #2c3e50;
            --light-color: #f9f9f9;
        }
        
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Agency FB', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
        }
        
        /* Header Section Styles */
        .header-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 60px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
            opacity: 0.1;
            z-index: 0;
        }
        
        .header-container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header-title {
            font-family: 'Agency FB', sans-serif;
            font-size: 3rem;
            margin-bottom: 15px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            animation: fadeInDown 1s ease-out;
        }
        
        .header-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0;
            animation: fadeIn 1.5s ease-out 0.5s forwards;
        }
        
        /* Scroll Down Icon */
        .scroll-down {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 2rem;
            opacity: 0.8;
            cursor: pointer;
            z-index: 2;
            animation: bounce 2s infinite;
            transition: all 0.3s ease;
        }
        
        .scroll-down:hover {
            opacity: 1;
            transform: translateX(-50%) scale(1.1);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-15px) translateX(-50%);
            }
            60% {
                transform: translateY(-7px) translateX(-50%);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 767.98px) {
            .header-section {
                padding: 40px 0 60px;
            }
            
            .header-title {
                font-size: 2.2rem;
            }
            
            .header-subtitle {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .scroll-down {
                font-size: 1.8rem;
                bottom: 15px;
            }
        }
        
        @media (max-width: 575.98px) {
            .header-title {
                font-size: 1.8rem;
            }
            
            .scroll-down {
                font-size: 1.5rem;
            }
        }
  