
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: linear-gradient(135deg, #1a0033 0%, #2d0052 100%); color: #e8e8e8; line-height: 1.7; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    a { color: #00d4ff; text-decoration: none; transition: all 0.3s ease; }
    a:hover { color: #00ffff; text-shadow: 0 0 8px rgba(0,255,255,0.5); }
    img { max-width: 100%; height: auto; border-radius: 12px; }
    header { background: rgba(0,0,0,0.7); backdrop-filter: blur(10px); border-bottom: 2px solid #00d4ff; padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,212,255,0.3); }
    header .container { display: flex; justify-content: space-between; align-items: center; }
    header .logo img { max-height: 50px; filter: drop-shadow(0 0 10px rgba(0,212,255,0.5)); }
    header nav ul { list-style: none; display: flex; gap: 5px; }
    header nav ul li a { color: #fff; padding: 10px 18px; display: block; font-weight: 600; border-radius: 8px; background: rgba(0,212,255,0.1); }
    header nav ul li a:hover { background: rgba(0,212,255,0.3); transform: translateY(-2px); }
    .hero { text-align: center; margin-bottom: 30px; }
    .hero-img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 0; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
    .content-section { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); padding: 50px; border-radius: 16px; margin: 30px 0; box-shadow: 0 8px 32px rgba(0,0,0,0.4); border: 1px solid rgba(0,212,255,0.2); }
    .content-section h1 { color: #00ffff; font-size: 2.2em; margin-bottom: 30px; text-shadow: 0 0 20px rgba(0,255,255,0.5); border-bottom: 3px solid #00d4ff; padding-bottom: 15px; }
    .content-section p { margin: 25px 0; font-size: 1.1em; text-align: justify; }
    .content-img { margin: 40px 0; box-shadow: 0 12px 40px rgba(0,212,255,0.3); transition: transform 0.3s ease; }
    .content-img:hover { transform: scale(1.02); }
    footer { background: rgba(0,0,0,0.8); border-top: 2px solid #00d4ff; padding: 50px 0 30px; margin-top: 50px; }
    .footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
    footer h3 { color: #00ffff; font-size: 1.3em; margin-bottom: 20px; text-shadow: 0 0 10px rgba(0,255,255,0.5); }
    footer ul { list-style: none; }
    footer ul li { margin-bottom: 12px; }
    footer ul li a { color: #b8b8b8; font-size: 0.95em; }
    footer ul li a:hover { color: #00ffff; padding-left: 5px; }
    footer p { color: #999; font-size: 0.9em; line-height: 1.6; }
    .faq-section, .review-section { margin-top: 60px; padding-top: 40px; border-top: 2px solid rgba(0,212,255,0.3); }
    .faq-section h2, .review-section h2 { color: #00ffff; font-size: 1.8em; margin-bottom: 30px; text-shadow: 0 0 15px rgba(0,255,255,0.5); }
    .faq-item { background: rgba(0,212,255,0.08); padding: 25px; border-radius: 12px; margin-bottom: 20px; border-left: 4px solid #00d4ff; transition: all 0.3s ease; }
    .faq-item:hover { background: rgba(0,212,255,0.15); transform: translateX(5px); }
    .faq-item h3 { color: #00ffff; margin-bottom: 12px; font-size: 1.2em; }
    .review-item { background: rgba(255,255,255,0.05); padding: 30px; border-radius: 12px; margin-bottom: 25px; border: 1px solid rgba(0,212,255,0.2); }
    .review-item p { font-style: italic; margin-bottom: 15px; color: #d8d8d8; }
    .review-item span { display: block; text-align: right; color: #00d4ff; font-weight: 600; font-size: 0.95em; }
    @media (max-width: 768px) {
        header nav ul { flex-wrap: wrap; justify-content: center; }
        .content-section { padding: 30px 20px; }
        .content-section h1 { font-size: 1.6em; }
    }
    