        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            min-height: 100vh;
            background-color: #f5f5f5;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
            height: 80px;
            overflow: hidden;
            flex-wrap: wrap;
        }

        /* Logo Container */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            max-width: 100%;
            flex-shrink: 0;
        }

        .logo img {
            max-height: 55px;
            width: auto;
            object-fit: contain;
            animation: pulse 2.5s infinite;
        }

        .logo-text {
            color: white;
            font-weight: 700;
            font-size: 22px;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        /* Navigation */
        .nav-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, opacity 0.3s ease;
            max-width: 100%;
        }

        .nav-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
            margin: 0 12px;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s ease;
            display: block;
        }

        .nav-link:hover {
            color: #FFD700;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #FFD700;
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: #008B8B;
            min-width: 180px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 4px;
            padding: 8px 0;
            top: 100%;
            left: -15px;
        }

        /* Header Actions Container */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            max-width: 100%;
            flex-shrink: 0;
            position: relative;
        }

        /* Contact Info */
        .header-contact {
            display: flex;
            align-items: center;
        }

        .header-contact a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .header-contact a:hover {
            color: #FFD700;
        }

        .header-contact i {
            margin-right: 8px;
            color: #FFD700;
            font-size: 18px;
            animation: pulse 2s infinite;
        }

        /* App Download Button */
        .app-download {
            background-color: #FFD700;
            color: #006666;
            padding: 10px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            white-space: nowrap;
            position: relative;
        }

        .app-download:hover {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transform: translateY(-2px);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            cursor: pointer;
            z-index: 1010;
            -webkit-tap-highlight-color: transparent;
            position: relative;
            margin-left: auto;
        }

        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Backdrop Overlay */
        .menu-backdrop {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1004;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .menu-backdrop.active {
            display: block;
            opacity: 1;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
            padding: 60px 5%;
            text-align: center;
            margin-top: 0;
            z-index: 1;
        }

        .hero-section h1 {
            font-size: 36px;
            color: #006666;
            margin-bottom: 20px;
        }

        .hero-section p {
            font-size: 18px;
            color: #333;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Animation */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .nav-item {
                margin: 0 8px;
            }
            
            .app-download {
                padding: 8px 12px;
                font-size: 13px;
            }
        }

        @media (max-width: 920px) {
            header {
                height: 70px;
            }
            
            .logo img {
                max-height: 45px;
            }
            
            .logo-text {
                font-size: 20px;
            }
            
            .nav-link {
                font-size: 14px;
            }
            
            .header-contact a {
                font-size: 14px;
            }
            
            .app-download {
                font-size: 12px;
                padding: 8px 10px;
            }
        }

        @media (max-width: 768px) {
            header {
                height: 70px;
                padding: 0 4%;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: 0;
                width: 270px;
                height: 100vh;
                background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
                flex-direction: column;
                padding: 80px 20px 30px;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                z-index: 1005;
                justify-content: flex-start;
                align-items: flex-start;
                overflow-y: auto;
                transform: translateX(100%);
                opacity: 0;
                transition: transform 0.3s ease, opacity 0.3s ease;
            }
            
            .nav-menu.active {
                transform: translateX(0);
                opacity: 1;
            }
            
            .nav-list {
                flex-direction: column;
                width: 100%;
            }
            
            .nav-item {
                margin: 0;
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-link {
                padding: 12px 0;
            }
            
            .dropdown-content {
                position: static;
                background: rgba(0,0,0,0.1);
                box-shadow: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                width: 100%;
                border-radius: 0;
                padding: 0;
                margin-left: 10px;
                display: block;
            }
            
            .dropdown.active .dropdown-content {
                max-height: 500px;
                padding: 5px 0;
                display: block;
            }
            
            .dropdown:hover .dropdown-content {
                display: none;
            }
            
            .dropdown-content a {
                padding: 10px;
            }
            
            .header-actions {
                gap: 8px;
            }
            
            .header-contact span {
                display: none;
            }
            
            .header-contact i {
                margin-right: 0;
            }
            
            .app-download {
                padding: 8px 10px;
                font-size: 12px;
            }
            
            .app-download span {
                display: none;
            }
            
            .app-download i {
                margin: 0;
            }
            
            .menu-toggle.active span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .menu-toggle.active span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
            
            .hero-section h1 {
                font-size: 28px;
            }
            
            .hero-section p {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 0 3%;
                height: 60px;
            }
            
            .logo img {
                max-height: 35px;
            }
            
            .logo-text {
                font-size: 18px;
            }
            
            .header-contact i {
                font-size: 16px;
            }
            
            .app-download {
                padding: 6px 8px;
            }
            
            .menu-toggle {
                width: 24px;
                height: 18px;
            }
            
            .nav-menu {
                width: 250px;
            }
            
            .hero-section {
                padding: 40px 3%;
            }
            
            .hero-section h1 {
                font-size: 24px;
            }
            
            .hero-section p {
                font-size: 14px;
            }
        }

        @media (max-width: 360px) {
            header {
                padding: 0 2%;
            }
            
            .logo img {
                max-height: 30px;
            }
            
            .logo-text {
                font-size: 16px;
            }
            
            .header-contact i {
                font-size: 14px;
            }
            
            .header-actions {
                gap: 6px;
            }
            
            .nav-menu {
                width: 220px;
            }
            
            .hero-section {
                padding: 30px 2%;
            }
        }
    