* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f5f2ea;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #c0392b;
            padding: 18px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffdb58;
            border-bottom: 2px solid #ffdb58;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 100;
        }
        h1 {
            color: #c0392b;
            margin: 40px 0 30px;
            font-size: 2.8rem;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #e74c3c;
            margin: 50px 0 25px;
            font-size: 2.2rem;
            border-bottom: 3px solid #e74c3c;
            padding-bottom: 12px;
            position: relative;
        }
        h2::after {
            content: "✨";
            margin-left: 10px;
        }
        h3 {
            color: #c0392b;
            margin: 35px 0 20px;
            font-size: 1.7rem;
            padding-left: 10px;
            border-left: 4px solid #e74c3c;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #c0392b;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background-color: #e74c3c;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 15px 15px 0;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 8px rgba(231,76,60,0.3);
        }
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(231,76,60,0.4);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            border-left: 5px solid #e74c3c;
        }
        .review {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        .review::before {
            content: "💬";
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 1.5rem;
        }
        .strategy-section {
            background-color: #fff4e5;
            padding: 30px;
            border-radius: 12px;
            margin: 35px 0;
            border-top: 5px solid #e74c3c;
        }
        .event-card {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.07);
            transition: transform 0.3s ease;
        }
        .event-card:hover {
            transform: scale(1.02);
        }
        footer {
            background-color: #2d2d2d;
            color: #f0f0f0;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffdb58;
            border-left: 4px solid #ffdb58;
            margin-bottom: 25px;
        }
        .footer-links {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        .footer-links a {
            color: #ffdb58;
            text-decoration: none;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            margin-top: 30px;
            font-size: 1rem;
            color: #bbb;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #c0392b;
                padding: 30px 20px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.2);
                z-index: 99;
            }
            .nav-links li {
                margin: 15px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }
            .btn {
                width: 100%;
                margin: 10px 0;
            }
            .image-container {
                margin: 30px 0;
            }
            .stats-box, .review, .strategy-section, .event-card {
                padding: 20px 15px;
                margin: 20px 0;
            }
        }
