     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #1a73e8;
            color: white;
            border-radius: 4px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #0d47a1;
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid #1a73e8;
            color: #1a73e8;
        }

        .btn-outline:hover {
            background-color: #1a73e8;
            color: white;
        }

        header {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: bold;
            color: #1a73e8;
        }

        .logo i {
            color: #34a853;
        }

        nav ul {
            display: flex;
            gap: 20px;
        }

        nav a {
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }

        nav a:hover {
            color: #1a73e8;
        }

        nav a.active {
            color: #1a73e8;
            font-weight: bold;
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #1a73e8;
        }

        .auth-buttons {
            display: flex;
            gap: 10px;
        }

        .mobile-menu {
            display: none;
            font-size: 22px;
            cursor: pointer;
        }

        .hero {
            background: linear-gradient(to right, #1a73e8, #0d47a1);
            color: white;
            padding: 70px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 25px;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }

        .hero .btn {
            background-color: white;
            color: #1a73e8;
        }

        .hero .btn:hover {
            background-color: #f0f0f0;
        }

        .features {
            padding: 70px 0;
            background-color: #f0f4f8;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 10px;
        }

        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .feature-card {
            background-color: white;
            border-radius: 6px;
            padding: 25px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(26, 115, 232, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .feature-icon i {
            font-size: 20px;
            color: #1a73e8;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .feature-card p {
            color: #666;
        }

        .stats {
            padding: 70px 0;
            background-color: white;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px;
        }

        .stat-item {
            text-align: center;
            padding: 15px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #1a73e8;
            margin-bottom: 5px;
        }

        .stat-label {
            color: #666;
            font-size: 1rem;
        }

        .cta {
            padding: 70px 0;
            background: linear-gradient(to right, #1a73e8, #0d47a1);
            color: white;
            text-align: center;
        }

        .cta h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .cta p {
            max-width: 600px;
            margin: 0 auto 25px;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        footer {
            background-color: #202124;
            color: white;
            padding: 50px 0 15px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h3 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 8px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 15px;
        }

        .social-links a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: #1a73e8;
        }

        .copyright {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdc1c6;
            font-size: 0.85rem;
        }

        .page-header {
            background-color: #f0f4f8;
            padding: 50px 0;
            text-align: center;
        }

        .page-header h1 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .page-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .content-section {
            padding: 70px 0;
        }

        .bundles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .bundle-card {
            background-color: white;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .bundle-card:hover {
            transform: translateY(-5px);
        }

        .bundle-header {
            padding: 20px;
            background-color: #1a73e8;
            color: white;
        }

        .bundle-header h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .bundle-price {
            font-size: 1.8rem;
            font-weight: bold;
        }

        .bundle-features {
            padding: 20px;
        }

        .bundle-features ul li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .bundle-features i {
            color: #34a853;
        }

        .bundle-action {
            padding: 0 20px 20px;
        }

        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .sector-card {
            background-color: white;
            border-radius: 6px;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .sector-card:hover {
            transform: translateY(-5px);
        }

        .sector-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(26, 115, 232, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }

        .sector-icon i {
            font-size: 24px;
            color: #1a73e8;
        }

        .sector-card h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .sector-card p {
            color: #666;
            margin-bottom: 12px;
        }

        .discover-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .discover-card {
            background-color: white;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .discover-image {
            height: 180px;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
        }

        .discover-content {
            padding: 20px;
        }

        .discover-content h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .discover-content p {
            color: #666;
            margin-bottom: 12px;
        }

        .discover-meta {
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 0.85rem;
        }

        .investor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .investor-card {
            background-color: white;
            border-radius: 6px;
            padding: 25px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            text-align: center;
        }

        .investor-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background-color: #e0e0e0;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #666;
        }

        .investor-card h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .investor-role {
            color: #1a73e8;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .investor-card p {
            color: #666;
            margin-bottom: 15px;
        }
