body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #fff9e6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .header { background-color: #ff6b35; color: white; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 24px; font-weight: bold; text-transform: uppercase; }
        .nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        .nav a { color: white; text-decoration: none; }
        .mobile-nav-toggle { display: none; position: absolute; top: 15px; right: 15px; }
        .content { padding: 20px 0; }
        .button { display: inline-block; background-color: #ff6b35; color: white; padding: 10px 20px; margin: 10px 0; text-decoration: none; border-radius: 5px; }
        .image-container { text-align: center; margin: 20px 0; }
        .footer { background-color: #333; color: white; text-align: center; padding: 15px; }
        h1 { color: #ff6b35; }
        h2, h3 { color: #e74c3c; }
        @media (max-width: 768px) {
            .nav { flex-direction: column; display: none; }
            .nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
        }
