body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f0e6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .header { background-color: #e74c3c; color: white; padding: 20px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        .nav { display: flex; justify-content: center; gap: 20px; margin-top: 15px; }
        .nav a { color: white; text-decoration: none; }
        .mobile-nav-toggle { display: none; position: absolute; top: 20px; right: 20px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        .content { padding: 20px 0; }
        .cta-button { display: inline-block; padding: 12px 24px; background-color: #e74c3c; color: white; text-decoration: none; border-radius: 5px; margin: 10px 0; }
        .image-container { text-align: center; margin: 20px 0; }
        .image-container img { max-width: 100%; height: auto; border-radius: 8px; }
        h1 { color: #e74c3c; font-size: 2.2em; }
        h2 { color: #c0392b; font-size: 1.8em; border-bottom: 2px solid #e74c3c; padding-bottom: 5px; }
        h3 { color: #2c3e50; font-size: 1.4em; }
        .footer { background-color: #2c3e50; color: white; padding: 20px; text-align: center; }
        .footer a { color: #f1c40f; text-decoration: none; }
        @media (max-width: 768px) {
            .nav { flex-direction: column; align-items: center; display: none; }
            .nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            h1 { font-size: 1.8em; }
            h2 { font-size: 1.5em; }
        }
