* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, sans-serif;
        }
        body {
            background-color: #f9f5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-nav {
            background-color: #e63946;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffd166;
        }
        .daman-link {
            background-color: #06d6a0;
            padding: 8px 15px;
            border-radius: 25px;
        }
        .daman-link:hover {
            background-color: #059669;
            color: white !important;
        }
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: white;
            cursor: pointer;
        }
        .hero {
            text-align: center;
            padding: 40px 0;
            background: linear-gradient(135deg, #fdf2f8 0%, #fef7fb 100%);
            border-radius: 15px;
            margin: 30px 0;
        }
        h1 {
            font-size: 2.5rem;
            color: #e63946;
            margin-bottom: 15px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: #4a4a4a;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .download-btn {
            background-color: #06d6a0;
            color: white;
            box-shadow: 0 4px 15px rgba(6, 214, 160, 0.3);
        }
        .download-btn:hover {
            background-color: #059669;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(6, 214, 160, 0.4);
        }
        .login-btn {
            background-color: #118ab2;
            color: white;
            box-shadow: 0 4px 15px rgba(17, 138, 178, 0.3);
        }
        .login-btn:hover {
            background-color: #073b4c;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(17, 138, 178, 0.4);
        }
        section {
            margin: 60px 0;
        }
        h2 {
            font-size: 2rem;
            color: #2b2d42;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 3px solid #e63946;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            color: #e63946;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: 700;
            color: #e63946;
        }
        .card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        ul {
            margin: 20px 0 30px 40px;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background-color: #fff7ed;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            border-left: 5px solid #e63946;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: #e63946;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #2b2d42;
        }
        .review-card {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-top: 4px solid #06d6a0;
        }
        .reviewer {
            font-weight: 600;
            color: #118ab2;
            margin-bottom: 5px;
            display: block;
        }
        .review-rating {
            color: #ffd166;
            margin-bottom: 10px;
        }
        .tip-box {
            background-color: #e0f7fa;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 4px solid #118ab2;
        }
        .tip-box h4 {
            color: #073b4c;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .event-card {
            background-color: #fef7fb;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 25px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        .event-details {
            flex: 1;
            min-width: 300px;
        }
        .event-date {
            font-weight: 600;
            color: #e63946;
            margin-bottom: 10px;
        }
        .footer {
            background-color: #2b2d42;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffd166;
            border-bottom: 2px solid #ffd166;
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #f1f1f1;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd166;
            padding-left: 5px;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background-color: #414460;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag a:hover {
            color: #ffd166;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #414460;
            font-size: 0.95rem;
            color: #b0b0b0;
        }
        .daman-promo {
            background-color: #06d6a0;
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            margin: 40px 0;
            font-size: 1.1rem;
            font-weight: 600;
        }
        .daman-promo a {
            color: #2b2d42;
            font-weight: 700;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
            .stat-number {
                font-size: 1.8rem;
            }
        }
