body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #FFF9E6; }
        .header { background-color: #FF6B35; color: white; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        .nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-toggle { display: none; position: absolute; right: 20px; top: 15px; font-size: 24px; cursor: pointer; }
        .container { max-width: 1200px; margin: 20px auto; padding: 0 20px; }
        h1, h2, h3 { color: #FF6B35; margin-top: 30px; }
        h1 { font-size: 2.5em; }
        h2 { font-size: 2em; }
        h3 { font-size: 1.5em; }
        .btn { display: inline-block; background-color: #FF6B35; color: white; padding: 10px 20px; margin: 10px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .image-container { text-align: center; margin: 20px 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; }
        .footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #FF6B35; color: white; padding: 5px 10px; margin: 5px; border-radius: 20px; text-decoration: none; }
        @media (max-width: 768px) {
            .nav { flex-direction: column; display: none; }
            .nav.active { display: flex; }
            .mobile-toggle { display: block; }
            h1 { font-size: 2em; }
            h2 { font-size: 1.7em; }
        }
