* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #D92B2B; 
            --secondary: #FFA500; 
            --accent: #FFD700; 
            --dark: #2C3E50;
            --light: #F8F9FA;
            --green: #2ECC71; 
            --spacing: 1.5rem;
            --para-spacing: 1.2rem;
        }
        body {
            line-height: 1.8;
            color: var(--dark);
            background-color: #FFF9F0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: var(--accent);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom: 2px solid var(--accent);
            color: var(--accent);
        }
        .btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background-color: var(--green);
            color: white;
            margin-right: 1rem;
        }
        .btn-download:hover {
            background-color: #27AE60;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: var(--accent);
            color: var(--dark);
        }
        .btn-login:hover {
            background-color: #F1C40F;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            padding: 3rem 0;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 2.5rem;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--dark);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--secondary);
            display: inline-block;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: var(--para-spacing);
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: 600;
            color: var(--primary);
        }
        .cultural-note {
            background-color: rgba(255, 247, 220, 0.8);
            border-left: 4px solid var(--accent);
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-list {
            list-style: none;
            margin: 1.5rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .feature-item {
            background-color: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .feature-item i {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 0.8rem;
            display: block;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid var(--primary);
            padding-left: 1rem;
            margin: 2rem 0;
            color: #555;
            font-size: 1.15rem;
        }
        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 3rem 0;
            gap: 2rem;
        }
        .stat-card {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            text-align: center;
            flex: 1;
            min-width: 200px;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            color: var(--dark);
            font-size: 1rem;
        }
        .image-container {
            text-align: center;
            margin: 2.5rem 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--secondary);
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .recommendation {
            background-color: rgba(255, 165, 0, 0.1);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            border: 1px solid var(--secondary);
        }
        .recommendation h4 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            font-size: 0.95rem;
            color: #bbb;
        }
        @media (max-width: 900px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, var(--primary), var(--secondary));
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .btn-group {
                display: none;
            }
            .mobile-btn-group {
                display: flex;
                gap: 1rem;
                margin-top: 1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1rem;
            }
        }
