body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5f5;
        }
        header {
            background-color: #1a3e8c;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        h1 {
            color: #1a3e8c;
            font-size: 32px;
            margin-bottom: 20px;
        }
        h2 {
            color: #d32f2f;
            font-size: 24px;
            margin: 30px 0 15px;
        }
        h3 {
            color: #388e3c;
            font-size: 20px;
            margin: 25px 0 10px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #d32f2f;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin: 15px 0;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #b71c1c;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            border-left: 5px solid #1a3e8c;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .strategy-section {
            background-color: #e8f5e9;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            margin-top: 40px;
        }
        .tag-cloud {
            margin: 30px 0;
        }
        .tag-cloud a {
            color: #1a3e8c;
            text-decoration: none;
            margin: 0 10px;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 80px;
                left: 0;
                background-color: #1a3e8c;
                padding: 15px;
                border-radius: 0 0 10px 10px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            body {
                padding: 10px;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 22px;
            }
        }
