* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: #f4f7fa; color: #1f2937; line-height: 1.6; transition: background 0.3s, color 0.3s; }
body.dark-mode { background: #0f172a; color: #e2e8f0; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: #fff; padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.3); backdrop-filter: blur(10px); }
header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo { font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg, #e94560, #f77f00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
nav ul { display: flex; list-style: none; gap: 25px; }
nav ul li a { font-weight: 500; transition: color 0.3s; }
nav ul li a:hover { color: #e94560; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.search-box { display: flex; align-items: center; background: rgba(255,255,255,0.1); border-radius: 30px; padding: 5px 15px; }
.search-box input { background: transparent; border: none; color: #fff; outline: none; width: 150px; }
.search-box button { background: none; border: none; color: #fff; cursor: pointer; }
.hero { background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; }
.hero .btn { background: #e94560; color: #fff; padding: 12px 35px; border-radius: 30px; font-weight: 600; transition: all 0.3s; display: inline-block; }
.hero .btn:hover { background: #f77f00; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(233,69,96,0.4); }
.hero-banner { position: relative; width: 100%; height: 400px; overflow: hidden; }
.hero-banner img { width: 100%; height: 100%; object-fit: cover; }
.banner-slide { display: none; }
.banner-slide.active { display: block; }
.section { padding: 60px 0; }
.section h2 { font-size: 2rem; text-align: center; margin-bottom: 40px; position: relative; }
.section h2::after { content: ''; display: block; width: 60px; height: 4px; background: #e94560; margin: 10px auto 0; border-radius: 2px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card { background: #fff; border-radius: 20px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.3s; backdrop-filter: blur(5px); border: 1px solid rgba(233,69,96,0.1); }
body.dark-mode .card { background: #1e293b; border-color: rgba(233,69,96,0.2); }
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.card img { width: 100%; height: 180px; object-fit: contain; border-radius: 12px; margin-bottom: 15px; background: #f8fafc; }
body.dark-mode .card img { background: #334155; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: #64748b; }
body.dark-mode .card p { color: #94a3b8; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; text-align: center; }
.team-member img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; }
.partner-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.partner-grid img { height: 60px; object-fit: contain; filter: grayscale(1); transition: filter 0.3s; }
.partner-grid img:hover { filter: none; }
.testimonial { background: linear-gradient(135deg, #f8fafc, #e2e8f0); padding: 40px 0; }
body.dark-mode .testimonial { background: linear-gradient(135deg, #1e293b, #0f172a); }
.testimonial-card { background: #fff; border-radius: 20px; padding: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
body.dark-mode .testimonial-card { background: #1e293b; }
.faq-item { border-bottom: 1px solid #e2e8f0; padding: 15px 0; cursor: pointer; }
body.dark-mode .faq-item { border-color: #334155; }
.faq-question { font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { display: none; padding-top: 10px; color: #64748b; }
body.dark-mode .faq-answer { color: #94a3b8; }
.faq-item.active .faq-answer { display: block; }
.news-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.news-item { background: #fff; border-radius: 15px; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
body.dark-mode .news-item { background: #1e293b; }
.news-item time { color: #94a3b8; font-size: 0.9rem; }
.breadcrumb { background: #f1f5f9; padding: 10px 0; font-size: 0.9rem; }
body.dark-mode .breadcrumb { background: #1e293b; }
.breadcrumb ul { list-style: none; display: flex; gap: 10px; }
.breadcrumb ul li::after { content: '›'; margin-left: 10px; }
.breadcrumb ul li:last-child::after { content: ''; }
footer { background: #1a1a2e; color: #cbd5e1; padding: 40px 0; }
footer .grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
footer h4 { color: #fff; margin-bottom: 15px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer a:hover { color: #e94560; }
.footer-bottom { border-top: 1px solid #334155; padding-top: 20px; margin-top: 30px; text-align: center; font-size: 0.9rem; }
.back-to-top { position: fixed; bottom: 30px; right: 30px; background: #e94560; color: #fff; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: opacity 0.3s; z-index: 99; border: none; font-size: 1.2rem; }
.back-to-top.visible { opacity: 1; }
.dark-toggle { background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer; margin-left: 15px; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 200; flex-direction: column; align-items: center; justify-content: center; }
.mobile-menu.active { display: flex; }
.mobile-menu a { color: #fff; font-size: 1.5rem; margin: 15px 0; }
.mobile-menu .close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }
.nav-highlight { background: #e94560; border-radius: 5px; padding: 5px 12px !important; }
@media (max-width: 768px) {
    nav ul { display: none; }
    .menu-toggle { display: block; }
    .search-box { display: none; }
    .hero h1 { font-size: 2rem; }
    .hero-banner { height: 250px; }
}
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.6s; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.counter { font-size: 2.5rem; font-weight: 700; color: #e94560; }
.scrollbar-hide::-webkit-scrollbar { display: none; }