
        /* Header Navigation Styles */
        .header-nav {
            background: #2d3748;
            color: white;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 70px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .nav {
            display: flex;
            gap: 30px;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-item {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 20px 0;
            display: block;
            transition: color 0.3s ease;
        }

        .nav-item:hover {
            color: #667eea;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .mega-dropdown {
            min-width: 1700px;
            left: -500px;
        }

        .mega-dropdown-content {
            padding: 0;
        }

        .mega-tabs {
            display: flex;
            background: #f8f9fa;
            border-bottom: 2px solid #e9ecef;
        }

        .mega-tab {
            padding: 15px 25px;
            cursor: pointer;
            font-weight: 500;
            color: #6c757d;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-size: 0.9rem;
        }

        .mega-tab:hover {
            background: #e9ecef;
            color: #495057;
        }

        .mega-tab.active {
            color: #667eea;
            border-bottom-color: #667eea;
            background: white;
        }

        .mega-tab-content {
            position: relative;
        }

        .mega-content {
            display: none;
            padding: 30px;
        }

        .mega-content.active {
            display: flex;
            gap: 30px;
        }

        .mega-content-left {
            flex: 1;
        }

        .mega-content-left h3 {
            color: #2d3748;
            font-size: 1.1rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .mega-categories {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .mega-category-column ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mega-category-column li {
            margin-bottom: 10px;
        }

        .mega-category-column a {
            color: #4a5568;
            text-decoration: none;
            font-size: 0.95rem;
            display: block;
            padding: 5px 0;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .mega-category-column a:hover {
            color: #667eea;
        }

        .mega-content-right {
            flex-shrink: 0;
            width: 200px;
        }

        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-viewall {
            color: #667eea !important;
            font-weight: 600;
        }

        .dropdown-cta {
            background: #f7fafc;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
        }

        .dropdown-cta p {
            color: #2d3748;
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .dropdown-cta-link {
            background: #667eea;
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            transition: background 0.3s ease;
        }

        .dropdown-cta-link:hover {
            background: #5a67d8;
        }

        .advisor-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }

        .advisor-name {
            font-size: 0.8rem;
            color: #4a5568;
            text-align: left;
            margin-top: 15px;
        }

        .advisor-name span {
            color: #718096;
            font-size: 0.75rem;
        }

        .advisor-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-top: 10px;
        }

        .small-dropdown {
            min-width: 150px;
        }

        .company-dropdown-list {
            list-style: none;
            margin: 0;
            padding: 15px 0;
        }

        .company-dropdown-list li {
            margin: 0;
        }

        .company-dropdown-list a {
            color: #4a5568;
            text-decoration: none;
            padding: 8px 20px;
            display: block;
            transition: background 0.3s ease;
        }

        .company-dropdown-list a:hover {
            background: #f7fafc;
            color: #667eea;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-container {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-input {
            padding: 10px 15px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            width: 280px;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .search-input:focus {
            border-color: #667eea;
        }

        .search-btn {
            background: none;
            border: none;
            position: absolute;
            right: 10px;
            cursor: pointer;
            font-size: 1rem;
        }

        .get-advice-btn {
            background: #667eea;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .get-advice-btn:hover {
            background: #5a67d8;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 16px;
            /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
            overflow: hidden;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 16px;
            /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
            overflow: hidden;
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .tabs-container {
            padding: 0;
        }

        .tab-navigation {
            display: flex;
            /* background: #f7fafc;
            border-bottom: 3px solid #e2e8f0; */
            overflow-x: auto;
        }

        .tab-button {
            background: none;
            border: none;
            padding: 20px 30px;
            font-size: 1rem;
            font-weight: 600;
            color: #4a5568;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            white-space: nowrap;
            position: relative;
        }

        .tab-button:hover {
            background: #edf2f7;
            color: #2d3748;
        }

        .tab-button.active {
            color: #667eea;
            border-bottom-color: #667eea;
            background: white;
        }

        .tab-content {
            display: none;
            padding: 40px;
            animation: fadeIn 0.3s ease-in-out;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .category-card {
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: #667eea;
        }

        .category-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 12px;
        }

        .category-description {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .category-features {
            list-style: none;
            margin-top: 15px;
        }

        .category-features li {
            color: #667eea;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .category-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #48bb78;
            font-weight: bold;
        }

        .view-all-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .view-all-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(102, 126, 234, 0.3);
        }

        .advisor-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px;
            text-align: center;
            margin-top: 40px;
        }

        .advisor-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .advisor-text h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .advisor-text p {
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .start-btn {
            background: white;
            color: #667eea;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .start-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }

        .advisor-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #667eea;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                height: auto;
                padding: 15px 20px;
            }
            
            .header-left {
                width: 100%;
                justify-content: space-between;
                margin-bottom: 15px;
            }
            
            .nav {
                gap: 20px;
            }
            
            .header-right {
                width: 100%;
                justify-content: center;
            }
            
            .search-input {
                width: 200px;
            }
            
            .dropdown-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .dropdown-menu {
                min-width: 300px;
                left: -50px;
            }
            
            .mega-dropdown {
                min-width: 350px;
                left: -100px;
            }
            
            .mega-tabs {
                flex-wrap: wrap;
            }
            
            .mega-tab {
                padding: 10px 15px;
                font-size: 0.8rem;
            }
            
            .mega-content.active {
                flex-direction: column;
                gap: 20px;
            }
            
            .mega-categories {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .mega-content-right {
                width: 100%;
            }
            
            .container {
                margin: 10px;
                border-radius: 12px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .tab-button {
                padding: 15px 20px;
                font-size: 0.9rem;
            }
            
            .tab-content {
                padding: 20px;
            }
            
            .category-grid {
                grid-template-columns: 1fr;
            }
        }