body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; }
        .header { background: #FF9900; color: white; padding: 1rem; text-align: center; position: relative; }
        .logo { font-size: 2rem; font-weight: bold; text-transform: uppercase; }
        .nav { display: flex; justify-content: center; gap: 1.5rem; margin-top: 0.5rem; }
        .nav a { color: white; text-decoration: none; }
        .mobile-toggle { display: none; position: absolute; top: 1rem; right: 1rem; }
        .content { max-width: 1200px; margin: 2rem auto; padding: 0 1rem; }
        .cta-button { display: inline-block; background: #FF5733; color: white; padding: 0.8rem 1.5rem; border-radius: 5px; text-decoration: none; margin: 1rem 0; }
        img { max-width: 100%; height: auto; margin: 1rem 0; }
        .footer { background: #333; color: white; text-align: center; padding: 1.5rem; margin-top: 2rem; }
        @media (max-width: 768px) {
            .nav { display: none; flex-direction: column; }
            .nav.active { display: flex; }
            .mobile-toggle { display: block; }
        }
