body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #f5f5f5; }
        header { background-color: #004d40; color: white; padding: 1rem; text-align: center; position: relative; }
        .logo { font-size: 2rem; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1rem; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu-btn { display: none; position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: white; font-size: 1.5rem; }
        main { max-width: 1200px; margin: 2rem auto; padding: 0 1rem; }
        section { background-color: white; border-radius: 8px; padding: 1.5rem; margin-bottom: 2rem; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
        h1 { color: #004d40; margin-bottom: 1.5rem; }
        h2 { color: #00796b; margin-top: 2rem; border-bottom: 2px solid #00796b; padding-bottom: 0.5rem; }
        h3 { color: #00897b; margin-top: 1.5rem; }
        .btn { display: inline-block; background-color: #004d40; color: white; padding: 0.8rem 1.5rem; border-radius: 4px; text-decoration: none; font-weight: bold; margin: 0.5rem 0; }
        .btn:hover { background-color: #00796b; }
        .download-section { text-align: center; margin: 2rem 0; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
        .stat-card { background-color: #e8f5e9; padding: 1rem; border-radius: 8px; text-align: center; }
        .image-container { text-align: center; margin: 1.5rem 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; }
        footer { background-color: #004d40; color: white; text-align: center; padding: 1.5rem; margin-top: 2rem; }
        .tags { margin: 1.5rem 0; }
        .tag { display: inline-block; background-color: #00796b; color: white; padding: 0.3rem 0.8rem; border-radius: 20px; margin: 0.2rem; font-size: 0.9rem; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
            .stats-grid { grid-template-columns: 1fr; }
        }
