body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #0a3d62; text-align: center; }
        h2 { color: #2c3e50; border-bottom: 2px solid #e67e22; padding-bottom: 5px; }
        h3 { color: #34495e; }
        .logo { font-size: 2em; font-weight: bold; color: #e67e22; text-align: center; margin: 20px 0; }
        .nav { background-color: #0a3d62; color: white; padding: 10px; display: flex; justify-content: space-around; flex-wrap: wrap; }
        .nav a { color: white; text-decoration: none; padding: 5px 10px; }
        .mobile-toggle { display: none; }
        .btn { display: inline-block; background-color: #e67e22; color: white; padding: 10px 20px; margin: 10px 0; text-decoration: none; border-radius: 5px; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        .footer { background-color: #2c3e50; color: white; padding: 20px; text-align: center; margin-top: 30px; }
        @media (max-width: 768px) {
            .nav { flex-direction: column; align-items: center; }
            .mobile-toggle { display: block; background-color: #e67e22; color: white; padding: 10px; cursor: pointer; }
            .nav-links { display: none; }
            .nav-links.active { display: flex; flex-direction: column; }
        }
