*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #f4f6f9;
color: #1c2b3a;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
padding-top: var(--hh);
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; } :root {
--navy:       #1a237e;
--navy-mid:   #283593;
--navy-dark:  #0d1b6e;
--orange:     #f57c00;
--orange-lt:  #ff9800;
--white:      #ffffff;
--bg:         #f4f6f9;
--bg2:        #f8fafc;
--border:     #e2e8f0;
--border2:    #cbd5e0;
--text:       #1c2b3a;
--text-mid:   #4a5568;
--text-lt:    #718096;
--radius:     10px;
--radius-sm:  6px;
--shadow-sm:  0 1px 4px rgba(0,0,0,.07);
--shadow:     0 3px 14px rgba(0,0,0,.10);
--shadow-hov: 0 6px 24px rgba(0,0,0,.13);
--hh:         64px;
} .wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; } #header {
position: fixed; top: 0; left: 0; right: 0; height: var(--hh);
background: var(--white); border-bottom: 2px solid var(--navy);
z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.hd-inner {
display: flex; align-items: center; gap: 12px; height: 100%;
max-width: 1180px; margin: 0 auto; padding: 0 20px;
}
.ham {
display: none; flex-direction: column; gap: 5px;
padding: 4px; background: none; border: none; flex-shrink: 0; cursor: pointer;
}
.ham span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .2s; } .logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.logo-icon {
width: 46px; height: 46px; background: var(--navy); border-radius: 8px;
display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon svg { width: 28px; height: 28px; }
.logo-icon img { width: 46px; height: 46px; object-fit: cover; border-radius: 8px; }
.logo-text { line-height: 1.1; }
.logo-name { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); letter-spacing: -.4px; }
.logo-name span { color: var(--orange); }
.logo-sub { font-size: .65rem; color: var(--text-lt); letter-spacing: .2px; } .hd-search { flex: 1; max-width: 480px; margin: 0 16px; }
.hd-search form { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: var(--bg2); }
.hd-search input[type="search"] { flex: 1; padding: 9px 14px; border: none; background: transparent; font-size: .85rem; color: var(--text); outline: none; font-family: inherit; }
.hd-search input[type="search"]::placeholder { color: #a0aec0; }
.hd-search button[type="submit"] { background: var(--navy); color: var(--white); padding: 9px 20px; font-size: .85rem; font-weight: 600; transition: background .18s; white-space: nowrap; }
.hd-search button[type="submit"]:hover { background: var(--navy-mid); } .hd-nav { display: flex; align-items: center; gap: 2px; }
.hd-nav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.hd-nav a, .hd-nav ul li a { padding: 6px 11px; font-size: .83rem; font-weight: 500; color: var(--text); border-radius: var(--radius-sm); transition: all .18s; white-space: nowrap; display: block; text-decoration: none; }
.hd-nav a:hover, .hd-nav a.active,
.hd-nav ul li a:hover, .hd-nav ul li.current-menu-item > a { background: var(--bg); color: var(--navy); } .mob-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 998; }
.mob-nav {
position: fixed; top: 0; left: -280px; width: 280px; height: 100%;
background: var(--white); z-index: 999; padding: 76px 0 20px;
transition: left .26s ease; overflow-y: auto; box-shadow: 3px 0 24px rgba(0,0,0,.12);
}
.mob-nav.open { left: 0; }
.mob-nav ul { list-style: none; margin: 0; padding: 0; }
.mob-nav ul li a, .mob-nav > a {
display: block; padding: 12px 20px; border-bottom: 1px solid var(--border);
color: var(--text); font-size: .9rem; font-weight: 500; transition: background .15s; text-decoration: none;
}
.mob-nav ul li a:hover, .mob-nav > a:hover { background: var(--bg2); color: var(--navy); } .hero {
background: linear-gradient(130deg, var(--navy) 0%, var(--navy-mid) 100%);
padding: 36px 0; text-align: center;
}
.hero h1 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.hero p { font-size: .875rem; color: rgba(255,255,255,.75); margin-bottom: 22px; }
.hero-form { display: flex; max-width: 580px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.2); }
.hero-form input[type="search"] { flex: 1; padding: 13px 18px; border: none; font-size: .95rem; color: var(--text); outline: none; font-family: inherit; }
.hero-form button[type="submit"] { background: var(--orange); color: var(--white); padding: 13px 28px; font-size: .95rem; font-weight: 700; transition: background .18s; white-space: nowrap; }
.hero-form button[type="submit"]:hover { background: var(--orange-lt); } .sec { padding: 28px 0; background: var(--white); }
.sec-gray { padding: 28px 0; background: var(--bg); }
.sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 8px; }
.sec-title { display: flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.sec-title .ico { font-size: 1.15rem; }
.sec-title em { color: var(--orange); font-style: normal; }
.sec-link { font-size: .82rem; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 3px; white-space: nowrap; transition: color .15s; text-decoration: none; }
.sec-link:hover { color: var(--orange); } .states-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.state-card {
display: flex; align-items: center; gap: 8px; padding: 10px 13px;
border: 1.5px solid var(--border); border-radius: var(--radius-sm);
background: var(--white); cursor: pointer; transition: all .18s; text-decoration: none; color: var(--text);
}
.state-card:hover { border-color: var(--orange); background: #fff8f0; color: var(--orange); }
.state-card.active { border-color: var(--orange); background: #fff3e0; box-shadow: 0 0 0 2px rgba(245,124,0,.18); }
.state-card.active .s-name { color: var(--orange); }
.s-ico { width: 26px; height: 26px; object-fit: contain; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.state-card img.s-thumb { width: 26px; height: 26px; object-fit: contain; flex-shrink: 0; border-radius: 3px; }
.s-name { font-size: .83rem; font-weight: 600; line-height: 1.2; }
.states-more {
display: flex; align-items: center; justify-content: center; gap: 8px;
margin-top: 10px; padding: 10px; border: 1.5px dashed var(--border2);
border-radius: var(--radius-sm); font-size: .83rem; font-weight: 600; color: var(--navy);
cursor: pointer; transition: all .18s; text-decoration: none; background: var(--white);
}
.states-more:hover { border-color: var(--navy); background: var(--bg2); } .dist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dist-card {
border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
background: var(--white); box-shadow: var(--shadow-sm); transition: all .18s;
text-decoration: none; color: var(--text); display: block;
}
.dist-card:hover { box-shadow: var(--shadow-hov); transform: translateY(-2px); color: var(--text); }
.dist-img {
width: 100%; aspect-ratio: 4/3; overflow: hidden;
background: linear-gradient(135deg, var(--navy), var(--navy-mid));
display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.dist-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dist-body { padding: 12px 13px; }
.dist-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.dist-count { font-size: .78rem; color: var(--text-lt); margin-bottom: 10px; }
.dist-btn {
display: block; width: 100%; background: var(--navy); color: var(--white);
text-align: center; padding: 8px; border-radius: var(--radius-sm);
font-size: .8rem; font-weight: 700; transition: background .18s;
border: none; cursor: pointer; font-family: inherit; text-decoration: none;
}
.dist-btn:hover { background: var(--navy-mid); color: var(--white); } .school-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.school-card {
border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
background: var(--white); box-shadow: var(--shadow-sm); transition: all .18s;
cursor: pointer; text-decoration: none; color: var(--text); display: block;
}
.school-card:hover { box-shadow: var(--shadow-hov); transform: translateY(-2px); color: var(--text); }
.school-img {
width: 100%; aspect-ratio: 4/3; overflow: hidden;
background: #eef2f7; display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.school-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.school-body { padding: 10px 12px; }
.school-name { font-size: .82rem; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 3px; }
.school-loc { font-size: .74rem; color: var(--text-lt); } .qa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.qa-card {
display: flex; flex-direction: column; align-items: center; gap: 8px;
padding: 18px 10px; border: 1.5px solid var(--border); border-radius: var(--radius);
background: var(--white); cursor: pointer; text-decoration: none; color: var(--text);
transition: all .18s; text-align: center;
}
.qa-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--text); }
.qa-ico { width: 46px; height: 46px; border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.qa-ico svg { width: 26px; height: 26px; }
.qa-label { font-size: .8rem; font-weight: 700; color: var(--text); line-height: 1.2; } .cat-list { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.cat-row {
display: flex; align-items: center; justify-content: space-between;
padding: 15px 18px; border-bottom: 1px solid var(--border);
text-decoration: none; color: var(--text); transition: background .15s; cursor: pointer;
}
.cat-row:last-child { border-bottom: none; }
.cat-row:hover { background: var(--bg2); color: var(--text); }
.cat-left { display: flex; align-items: center; gap: 12px; }
.cat-ico { width: 38px; height: 38px; border-radius: 8px; background: #eef0ff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cat-ico svg { width: 20px; height: 20px; }
.cat-name { font-size: .95rem; font-weight: 600; color: var(--text); }
.cat-badge { background: var(--navy); color: var(--white); font-size: .75rem; font-weight: 700; padding: 4px 11px; border-radius: 20px; }
.cat-badge.orange { background: var(--orange); }
.cat-badge.green  { background: #16a34a; } #footer { background: var(--navy-dark); color: rgba(255,255,255,.8); padding: 36px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; }
.footer-brand .f-logo { font-family: 'Poppins', sans-serif; font-size: 1.45rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-brand .f-logo span { color: var(--orange); }
.footer-brand p { font-size: .82rem; line-height: 1.75; color: rgba(255,255,255,.55); }
.footer-col h4 { font-size: .8rem; font-weight: 700; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .6px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: .82rem; transition: color .15s; text-decoration: none; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bot {
border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0;
display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bot p { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-bot a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer-bot a:hover { color: var(--orange); } .mob-bottom-nav {
display: none; position: fixed; bottom: 0; left: 0; right: 0;
background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.12); z-index: 990;
}
.mob-bottom-nav ul { display: flex; list-style: none; margin: 0; padding: 0; }
.mob-bottom-nav li { flex: 1; }
.mob-bottom-nav a {
display: flex; flex-direction: column; align-items: center; gap: 3px;
padding: 10px 4px; color: rgba(255,255,255,.55); font-size: .68rem; font-weight: 600;
transition: color .15s; text-decoration: none;
}
.mob-bottom-nav a.active, .mob-bottom-nav a:hover { color: var(--white); }
.mob-bottom-nav svg { width: 22px; height: 22px; } .page-hero { background: linear-gradient(130deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 32px 0; color: var(--white); }
.page-hero h1 { font-family: 'Poppins', sans-serif; font-size: 1.7rem; font-weight: 800; margin-top: 8px; }
.breadcrumb { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: rgba(255,255,255,.7); flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: .5; } .inner-wrap { padding: 28px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 290px; gap: 24px; align-items: start; }
.sd-sidebar { position: sticky; top: calc(var(--hh) + 16px); }
.sd-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; }
.sd-widget-title { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 10px 14px; font-size: .88rem; font-weight: 700; color: var(--text); font-family: 'Poppins', sans-serif; }
.sd-widget-body { padding: 12px 14px; }
.sd-widget-body.flush { padding: 0; }
.sd-widget-body ul { list-style: none; padding: 0; margin: 0; }
.sd-widget-body ul li a { display: flex; justify-content: space-between; align-items: center; padding: 9px 14px; border-bottom: 1px solid var(--border); font-size: .83rem; color: var(--text); text-decoration: none; transition: background .15s; }
.sd-widget-body ul li:last-child a { border-bottom: none; }
.sd-widget-body ul li a:hover { background: var(--bg2); color: var(--navy); }
.sd-widget-body ul li a span.ct { background: var(--bg2); padding: 1px 7px; border-radius: 20px; font-size: .72rem; }
.sd-widget-body .search-row { display: flex; gap: 6px; }
.sd-widget-body .search-row input { flex: 1; padding: 8px 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: .83rem; font-family: inherit; outline: none; }
.sd-widget-body .search-row input:focus { border-color: var(--navy); }
.sd-widget-body .search-row button { background: var(--navy); color: var(--white); padding: 8px 14px; border-radius: var(--radius-sm); font-size: .83rem; font-weight: 600; font-family: inherit; border: none; cursor: pointer; transition: background .18s; }
.sd-widget-body .search-row button:hover { background: var(--navy-mid); } .post-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; transition: box-shadow .18s; }
.post-card:hover { box-shadow: var(--shadow); }
.post-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.post-card-body { padding: 16px; }
.post-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.post-cat { background: var(--navy); color: var(--white); font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; text-transform: uppercase; letter-spacing: .4px; text-decoration: none; }
.post-date { font-size: .78rem; color: var(--text-lt); }
.post-card h2, .post-card h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
.post-card h2 a, .post-card h3 a { color: var(--text); text-decoration: none; }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--navy); }
.post-card p { font-size: .83rem; color: var(--text-mid); line-height: 1.6; } .post-single { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.post-single h1 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; line-height: 1.3; margin-bottom: 14px; }
.post-single .post-meta { padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.entry-content { font-size: .95rem; line-height: 1.8; }
.entry-content h2, .entry-content h3, .entry-content h4 { font-family: 'Poppins', sans-serif; margin: 22px 0 10px; }
.entry-content p { margin-bottom: 14px; }
.entry-content img { border-radius: var(--radius-sm); margin: 14px 0; max-width: 100%; }
.entry-content ul, .entry-content ol { margin: 10px 0 14px 20px; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content a { color: var(--navy); text-decoration: underline; }
.entry-content blockquote { border-left: 3px solid var(--navy); padding: 10px 16px; background: var(--bg2); margin: 14px 0; font-style: italic; color: var(--text-mid); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: .88rem; }
.entry-content table th, .entry-content table td { border: 1px solid var(--border); padding: 8px 12px; }
.entry-content table th { background: var(--bg2); font-weight: 700; } .sd-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 28px 0; flex-wrap: wrap; }
.sd-pagination .nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.sd-pagination a, .sd-pagination span { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-size: .83rem; font-weight: 600; border: 1px solid var(--border); color: var(--text); text-decoration: none; transition: all .18s; }
.sd-pagination a:hover, .sd-pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); } .post-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border); }
.post-nav a { flex: 1; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 11px 14px; font-size: .82rem; color: var(--text); text-decoration: none; line-height: 1.4; transition: background .15s; }
.post-nav a:hover { background: var(--bg); color: var(--navy); }
.post-nav .next-link { text-align: right; }
.post-nav strong { display: block; font-size: .72rem; color: var(--text-lt); margin-bottom: 2px; } .post-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.post-tags a { background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 3px 11px; font-size: .75rem; font-weight: 600; color: var(--navy); text-decoration: none; transition: all .15s; }
.post-tags a:hover { background: var(--navy); color: var(--white); } .empty-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px 32px; text-align: center; }
.empty-box .e-icon { font-size: 3.5rem; margin-bottom: 12px; }
.empty-box h2 { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.empty-box p { color: var(--text-lt); font-size: .95rem; margin-bottom: 24px; }
.btn-navy { background: var(--navy); color: var(--white); padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: .9rem; text-decoration: none; display: inline-block; transition: background .18s; }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); } .aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 16px 10px 0; }
.alignright { float: right; margin: 0 0 10px 16px; }
.wp-caption-text { font-size: .75rem; color: var(--text-lt); text-align: center; margin-top: 4px; } @media (max-width: 1024px) {
.states-grid  { grid-template-columns: repeat(3, 1fr); }
.dist-grid    { grid-template-columns: repeat(2, 1fr); }
.school-grid  { grid-template-columns: repeat(2, 1fr); }
.footer-grid  { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 768px) {
:root { --hh: 56px; }
.hd-search, .hd-nav { display: none; }
.ham { display: flex; }
.hero h1  { font-size: 1.2rem; }
.hero p   { font-size: .82rem; }
.hero-form input[type="search"]  { font-size: .88rem; padding: 12px 14px; }
.hero-form button[type="submit"] { font-size: .88rem; padding: 12px 18px; }
.states-grid  { grid-template-columns: repeat(2, 1fr); gap: 8px; }
.dist-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px; }
.school-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
.qa-grid      { grid-template-columns: repeat(4, 1fr); gap: 8px; }
.qa-card      { padding: 14px 6px; gap: 6px; }
.qa-ico       { width: 38px; height: 38px; border-radius: 7px; }
.qa-ico svg   { width: 20px; height: 20px; }
.qa-label     { font-size: .72rem; }
.footer-grid  { grid-template-columns: 1fr; gap: 20px; }
.footer-bot   { flex-direction: column; text-align: center; }
.mob-bottom-nav { display: block; }
#footer       { padding-bottom: 64px; }
.sec, .sec-gray { padding: 20px 0; }
.sec-title    { font-size: .95rem; }
.wrap         { padding: 0 14px; }
.logo-name    { font-size: 1.2rem; }
.logo-sub     { display: none; }
.logo-icon    { width: 38px; height: 38px; }
.logo-icon svg { width: 22px; height: 22px; }
.content-grid { grid-template-columns: 1fr; }
.sd-sidebar   { position: static; }
.page-hero h1 { font-size: 1.3rem; }
}
@media (max-width: 480px) {
.states-grid  { grid-template-columns: repeat(2, 1fr); gap: 7px; }
.dist-grid    { grid-template-columns: repeat(2, 1fr); gap: 9px; }
.school-grid  { grid-template-columns: repeat(2, 1fr); gap: 9px; }
.dist-name    { font-size: .9rem; }
.dist-count   { font-size: .73rem; }
.cat-name     { font-size: .88rem; }
.hero h1      { font-size: 1.05rem; }
.hero         { padding: 24px 0; }
}