
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent; /* Removes mobile tap highlight */
        }
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background-color: #0a2e0a;
            padding-top: 60px; /* Reduced for mobile */
            text-size-adjust: 100%; /* Prevents font scaling on iOS */
        }
        
        /* Sticky Navbar (Mobile-Optimized) */
        nav {
            background-color: #041e04;
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            min-height: 60px; /* Ensures consistent tap target size */
        }
        nav.scrolled {
            box-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
            background-color: #0b320b;
        }
        
        /* Logo & Button (Mobile-Friendly Sizing) */
        .logo {
            height: 30px;
            width: auto;
            transition: transform 0.3s;
            cursor: pointer;
        }
        .back-btn {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            font-size: 14px; /* Larger text for mobile */
            min-width: 100px; /* Better tap target */
        }
        
        /* Content (Mobile-First Design) */
        .container {
            max-width: 100%;
            padding: 0 15px;
        }
        .content-box {
            background-color: #0d3a0d;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            word-wrap: break-word; /* Prevents horizontal scrolling */
            overflow-wrap: break-word;
        }
        
        /* Typography for Mobile */
        h1 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        h2 {
            font-size: 18px;
            margin-top: 20px;
        }
        p, li {
            font-size: 15px;
            margin-bottom: 12px;
        }
        
        /* Footer */
        footer {
            padding: 15px;
            font-size: 13px;
        }
        
        /* Touch Optimizations */
        button, a {
            -webkit-user-select: none; /* Disable text selection on tap */
            user-select: none;
        }
        .back-btn:active {
            transform: scale(0.98); /* Tactile feedback */
        }
        
        /* Media Query for Very Small Screens */
        @media (max-width: 400px) {
            body {
                padding-top: 55px;
            }
            nav {
                padding: 8px 10px;
            }
            .logo {
                height: 25px;
            }
            .back-btn {
                padding: 6px 10px;
                min-width: 80px;
            }
        }
