body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        .logo { font-size: 28px; font-weight: bold; color: #FF4500; text-shadow: 2px 2px 4px rgba(0,0,0,0.1); margin-bottom: 20px; }
        nav { background-color: #2c3e50; padding: 15px; margin-bottom: 30px; }
        nav ul { list-style: none; display: flex; justify-content: space-around; padding: 0; }
        nav li a { color: white; text-decoration: none; font-weight: 500; }
        .mobile-menu { display: none; background: #2c3e50; color: white; padding: 10px; text-align: center; cursor: pointer; }
        h1 { color: #FF4500; border-bottom: 3px solid #FF4500; padding-bottom: 10px; }
        h2 { color: #3498db; margin-top: 30px; }
        h3 { color: #2ecc71; }
        .btn { display: inline-block; background: #FF4500; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .image-container { text-align: center; margin: 25px 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; }
        table { width: 100%; border-collapse: collapse; margin: 20px 0; }
        table, th, td { border: 1px solid #ddd; }
        th, td { padding: 12px; text-align: left; }
        th { background-color: #f2f2f2; }
        footer { background-color: #2c3e50; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        @media (max-width: 768px) {
            nav ul { flex-direction: column; display: none; }
            nav ul.active { display: flex; }
            .mobile-menu { display: block; }
            .logo { font-size: 24px; }
        }
