* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2563eb;
            --secondary: #1e293b;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #0f172a;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
        }
        body {
            line-height: 1.8;
            color: var(--dark);
            background-color: var(--light);
            padding-bottom: 2rem;
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: var(--secondary);
            color: white;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .logo span {
            color: var(--primary);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }
        .nav-links li {
            margin-left: 2.5rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .nav-links a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 1.4rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .btn:hover {
            background-color: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
        }
        .btn-login {
            background-color: var(--accent);
            color: var(--secondary);
        }
        .btn-login:hover {
            background-color: #d97706;
            color: white;
        }
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('hero-bg-odyssey.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: #f1f5f9;
        }
        .btn-group {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        main {
            padding: 1rem 0 4rem;
        }
        section {
            margin-bottom: 4rem;
            scroll-margin-top: 100px;
        }
        h2 {
            color: var(--secondary);
            font-size: 2.2rem;
            margin-bottom: 1.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 4px solid var(--primary);
            display: inline-block;
            font-weight: 700;
        }
        h3 {
            color: var(--secondary);
            font-size: 1.6rem;
            margin: 2rem 0 1.2rem;
            font-weight: 600;
            position: relative;
            padding-left: 1rem;
        }
        h3::before {
            content: "▶";
            color: var(--accent);
            position: absolute;
            left: 0;
        }
        h4 {
            color: var(--primary);
            font-size: 1.3rem;
            margin: 1.5rem 0 1rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            padding: 2rem;
            margin-bottom: 2.5rem;
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feature-card {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-top: 5px solid var(--primary);
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        .feature-card h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .feature-card h4 span {
            font-size: 1.5rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        th, td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        th {
            background-color: var(--secondary);
            color: white;
            font-weight: 600;
        }
        tr:hover {
            background-color: #f8fafc;
        }
        tr:last-child td {
            border-bottom: none;
        }
        ul {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        ul li {
            margin-bottom: 0.8rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(245, 158, 11, 0.15);
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            font-weight: 600;
            color: var(--dark);
            border-left: 4px solid var(--accent);
        }
        .stat-badge {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0 0.3rem 0.5rem 0;
        }
        .daman-recommendation {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .daman-recommendation h3 {
            color: white;
            margin-bottom: 1rem;
            padding-left: 0;
        }
        .daman-recommendation h3::before {
            display: none;
        }
        .daman-recommendation a {
            color: var(--accent);
            font-weight: 600;
            text-decoration: underline;
        }
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            padding-left: 0;
        }
        .footer-section h3::before {
            display: none;
        }
        .footer-section ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-section ul li {
            margin-bottom: 1rem;
        }
        .footer-section a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .footer-section a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 2rem;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--secondary);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                display: none;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 1rem 0;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .btn-group {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .card {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 4rem 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .logo {
                font-size: 1.6rem;
            }
            .card {
                padding: 1.2rem;
            }
        }
