/* Core from uploaded HTML mapped into theme classes */
:root{--brand:#1e3c72;--brand2:#2a5298;--accent:#ff6b35;--ink:#333;--muted:#666;--bg:#f8f9fa}
*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;line-height:1.6;color:var(--ink);background:var(--bg)}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.header{background:linear-gradient(135deg,var(--brand) 0%,var(--brand2) 100%);color:#fff;box-shadow:0 2px 10px rgba(0,0,0,.1);position:sticky;top:0;z-index:50}
.header .inner{display:flex;justify-content:space-between;align-items:center;padding:14px 0}
.brand{font-weight:800;font-size:22px;display:flex;align-items:center;gap:10px}
.brand img{height:40px;width:auto}
.menu{list-style:none;display:flex;gap:24px;margin:0;padding:0;flex-wrap:wrap}
.menu a{color:#fff;text-decoration:none;font-weight:600}
.menu a:hover{text-decoration:underline}
.hero{background:linear-gradient(rgba(30,60,114,.8), rgba(42,82,152,.8))), url();color:#fff;text-align:center;padding:80px 0;background-size:cover;background-position:center}
.hero h1{font-size:42px;margin:0 0 10px}
.hero p{max-width:700px;margin:0 auto 16px;color:#eef2ff}
.btn{display:inline-block;border:none;cursor:pointer;border-radius:999px;padding:12px 22px;font-weight:700;text-decoration:none}
.btn-cta{background:var(--accent);color:#fff}
.btn-ghost{border:1px solid #fff;color:#fff;background:transparent}
.section{padding:64px 0;background:#fff}
.section.alt{background:#f8f9fa}
.section-title{text-align:center;margin-bottom:36px}
.section-title h2{font-size:32px;color:var(--brand);margin:0 0 8px}
.section-title p{color:var(--muted)}
.grid{display:grid;gap:28px}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}
.card{background:#fff;border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,.08);padding:24px;transition:transform .2s, box-shadow .2s}
.card:hover{transform:translateY(-6px);box-shadow:0 20px 40px rgba(0,0,0,.12)}
.feature-icon{width:80px;height:80px;border-radius:50%;background:linear-gradient(135deg,var(--accent),#f7931e);display:flex;align-items:center;justify-content:center;margin:0 auto 16px;font-size:30px;color:#fff}
.program-card img{width:100%;height:200px;object-fit:cover;border-radius:12px}
.meta{color:#888;font-size:14px}
.footer{background:#1a1a1a;color:#d1d5db;padding:48px 0 20px}
.footer a{color:#d1d5db}
.footer h3{color:var(--accent)}
.form{display:grid;gap:14px}
.form .row{display:grid;gap:14px;grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.form input,.form select,.form textarea{width:100%;padding:12px;border:1px solid #e5e7eb;border-radius:10px}
.notice{padding:10px 12px;border-radius:10px;margin-bottom:10px}
.notice.ok{background:#ecfdf5;border:1px solid #10b981;color:#065f46}
.notice.err{background:#fef2f2;border:1px solid #ef4444;color:#991b1b}
.breadcrumb{color:#64748b;margin-bottom:12px}
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:10px;border:1px solid #e5e7eb;text-align:left}
@media(max-width:768px){.hero h1{font-size:32px}}
.header .brand a{color:#ffffff;}
