:root { --primary: #2563eb; --dark: #0f172a; --light: #f8fafc; --text: #334155; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, sans-serif; line-height: 1.6; color: var(--text); background: var(--light); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 12px 24px; background: var(--primary); color: #fff; border-radius: 8px; font-weight: 600; transition: 0.3s; }
.btn:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
header { background: #fff; padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--dark); }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { font-weight: 500; }
.hero { text-align: center; padding: 80px 20px; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: #fff; }
.hero h1 { font-size: 2.5rem; margin-bottom: 15px; line-height: 1.2; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; opacity: 0.9; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.stats { display: flex; justify-content: center; gap: 40px; padding: 40px 0; background: #fff; text-align: center; flex-wrap: wrap; }
.stat-item h3 { font-size: 2rem; color: var(--primary); }
.stat-item p { font-size: 0.9rem; }
.services { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 2rem; color: var(--dark); margin-bottom: 10px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.card { background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: 0.3s; }
.card:hover { transform: translateY(-5px); }
.card h3 { margin: 10px 0; color: var(--dark); font-size: 1.2rem; }
.card ul { margin-top: 10px; color: #64748b; font-size: 0.9rem; display: flex; flex-wrap: wrap; gap: 8px; }
.card ul li { background: #f1f5f9; padding: 4px 10px; border-radius: 4px; }
.coverage { padding: 60px 0; background: #f1f5f9; text-align: center; }
.tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 20px 0; }
.tag { background: #fff; padding: 8px 15px; border-radius: 20px; font-size: 0.85rem; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.faq { padding: 60px 0; }
.faq-item { background: #fff; margin-bottom: 10px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); overflow: hidden; }
.faq-question { padding: 15px 20px; cursor: pointer; display: flex; justify-content: space-between; font-weight: 600; transition: background 0.2s; }
.faq-question:hover { background: #f8fafc; }
.faq-answer { padding: 0 20px 15px; display: none; color: #475569; }
.faq-item.active .faq-answer { display: block; }
.cta { text-align: center; padding: 60px 20px; background: var(--primary); color: #fff; border-radius: 12px; margin: 40px auto; max-width: 900px; }
.cta h2 { font-size: 2rem; margin-bottom: 15px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.cta .btn-outline { border-color: #fff; color: #fff; }
footer { background: var(--dark); color: #cbd5e1; padding: 50px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-col h4 { color: #fff; margin-bottom: 15px; }
.footer-col a { display: block; margin-bottom: 8px; transition: 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #334155; font-size: 0.85rem; }
.contact-icons { display: flex; gap: 15px; margin-top: 10px; flex-wrap: wrap; }
@media (max-width: 768px) {
.nav-links { display: none; }
.hero h1 { font-size: 2rem; }
.stats { flex-direction: column; gap: 20px; }
}