    :root {
      --primary: #1a1a2e;
      --primary-light: #16213e;
      --secondary: #e94560;
      --accent: #0f3460;
      --text: #333;
      --text-light: #666;
      --bg: #fff;
      --bg-light: #f8f9fa;
      --success: #28a745;
      --border: #e0e0e0;
      --shadow: 0 2px 8px rgba(0,0,0,0.08);
      --radius: 8px;
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      line-height: 1.6;
      background: var(--bg);
    }
    img, video, iframe {
      max-width: 100%;
      height: auto;
    }
    img {
      aspect-ratio: attr(width) / attr(height);
    }
    .newsletter-form button {
      contain: layout;
    }
    .footer {
      content-visibility: auto;
      contain-intrinsic-size: auto 400px;
    }
    .testimonial {
      contain: layout style paint;
    }
      100% { background-position: -200% 0; }
    }
    .stat {
      text-align: center;
      background: rgba(255,255,255,0.1);
      padding: 16px;
      border-radius: var(--radius);
    }
    .stat-num {
      font-size: 28px;
      font-weight: 800;
      color: var(--secondary);
    }
    .stat-label {
      font-size: 12px;
      opacity: 0.8;
    }
    .section {
      padding: 60px 20px;
    }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-title h2 {
      font-size: 28px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
    }
    .section-title p {
      font-size: 15px;
      color: var(--text-light);
    }
    .card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
    .card-body {
      padding: 20px;
    }
    .card-body ul {
      list-style: none;
      margin-bottom: 16px;
    }
    .card-body li {
      padding: 8px 0;
      font-size: 14px;
      border-bottom: 1px solid var(--border);
    }
    .card-body li::before {
      content: '✓';
      color: var(--success);
      font-weight: bold;
      margin-right: 8px;
    }
    .feature-card {
      background: white;
      padding: 24px;
      border-radius: 12px;
      box-shadow: var(--shadow);
    }
    .feature-card h3 {
      font-size: 16px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .feature-card p {
      font-size: 14px;
      color: var(--text-light);
    }
    .info-table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .info-table td {
      padding: 14px 16px;
      text-align: left;
      font-size: 14px;
      border-bottom: 1px solid var(--border);
    }
    .info-table th {
      background: var(--primary);
      color: white;
      font-weight: 600;
    }
    .newsletter {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      color: white;
      text-align: center;
      padding: 60px 20px;
    }
    .newsletter h2 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .newsletter p {
      font-size: 15px;
      opacity: 0.9;
      margin-bottom: 24px;
    }
    .newsletter-form {
      display: flex;
      max-width: 460px;
      margin: 0 auto;
      gap: 10px;
    }
    .newsletter-form input {
      flex: 1;
      padding: 12px 16px;
      border: none;
      border-radius: var(--radius);
      font-size: 14px;
    }
    .newsletter-form button {
      background: var(--secondary);
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: var(--radius);
      font-weight: 600;
      cursor: pointer;
    }
    .content {
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
    }
    .content h2 {
      font-size: 24px;
      font-weight: 700;
      color: var(--primary);
      margin: 32px 0 16px;
    }
    .content h3 {
      font-size: 20px;
      font-weight: 600;
      color: var(--primary);
      margin: 24px 0 12px;
    }
    .content p {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .content ul, .content ol {
      margin-bottom: 16px;
      padding-left: 24px;
    }
    .content li {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 8px;
    }
    .content table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
    }
    .content th, .content td {
      padding: 12px 16px;
      text-align: left;
      font-size: 14px;
      border: 1px solid var(--border);
    }
    .content th {
      background: var(--bg-light);
      font-weight: 600;
    }
    .content a {
      color: var(--secondary);
      text-decoration: none;
    }
    .content a:hover {
      text-decoration: underline;
    }
    .footer {
      background: var(--primary);
      color: white;
      padding: 50px 20px 24px;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
    }
    .footer-brand p {
      font-size: 13px;
      opacity: 0.7;
      margin-top: 12px;
      line-height: 1.6;
    }
    .footer h4 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 16px;
    }
    .footer ul {
      list-style: none;
    }
    .footer li {
      margin-bottom: 10px;
    }
    .footer a {
      color: white;
      opacity: 0.7;
      text-decoration: none;
      font-size: 13px;
      transition: opacity 0.2s;
    }
    .footer-bottom {
      max-width: 1200px;
      margin: 30px auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
      font-size: 12px;
      opacity: 0.5;
    }
    .blog-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .blog-card-image {
      height: 180px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    }
    .blog-card-body {
      padding: 20px;
    }
    .blog-card-meta {
      font-size: 12px;
      color: var(--text-light);
      margin-bottom: 8px;
    }
    .blog-card-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .blog-card-title a {
      text-decoration: none;
      color: inherit;
    }
    .blog-card-excerpt {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.5;
    }
    .school-card {
      background: white;
      border-radius: 12px;
      padding: 24px;
      box-shadow: var(--shadow);
      display: flex;
      gap: 20px;
    }
    .school-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
    }
    .school-info h3 {
      font-size: 16px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 4px;
    }
    .school-info p {
      font-size: 13px;
      color: var(--text-light);
    }
    .school-info .school-state {
      display: inline-block;
      background: var(--bg-light);
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 12px;
      margin-top: 8px;
    }
      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }
      .section {
        padding: 40px 16px;
      }
      .section-title h2 {
        font-size: 24px;
      }
    }
      .stat-num {
        font-size: 22px;
      }
      .stat-label {
        font-size: 10px;
      }
      .section {
        padding: 32px 16px;
      }
      .section-title {
        margin-bottom: 24px;
      }
      .section-title h2 {
        font-size: 20px;
      }
      .section-title p {
        font-size: 13px;
      }
      .feature-card {
        padding: 16px;
      }
      .feature-card h3 {
        font-size: 15px;
      }
      .feature-card p {
        font-size: 13px;
      }
      .info-table, table {
        font-size: 12px;
      }
      table th, table td {
        padding: 8px 10px;
      }
      .blog-card-img {
        height: 140px;
      }
      .blog-card-body {
        padding: 14px;
      }
      .blog-card-title {
        font-size: 14px;
      }
      .school-item {
        padding: 14px;
      }
      .school-item-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
      }
      .school-item-info h3 {
        font-size: 14px;
      }
      .newsletter {
        padding: 32px 16px;
      }
      .newsletter h2 {
        font-size: 20px;
      }
      .newsletter p {
        font-size: 13px;
      }
      .newsletter-form {
        flex-direction: column;
      }
      .newsletter-form button {
        width: 100%;
        padding: 12px;
      }
      .footer {
        padding: 32px 16px 20px;
      }
      .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .footer-brand p {
        font-size: 12px;
      }
      .footer h4 {
        font-size: 14px;
        margin-bottom: 12px;
      }
      .footer li {
        margin-bottom: 8px;
      }
      .footer a {
        font-size: 12px;
      }
      .footer-bottom {
        font-size: 11px;
        margin-top: 24px;
        padding-top: 16px;
      }
      .stat {
        padding: 10px 6px;
      }
      .stat-num {
        font-size: 18px;
      }
      .section-title h2 {
        font-size: 18px;
      }
/* CLS Prevention */
img{aspect-ratio:attr(width)/attr(height);height:auto;max-width:100%;display:block}
.card,.feature-card,.blog-card,.school-card,.testimonial{contain:layout style paint}
.newsletter,.footer{content-visibility:auto;contain-intrinsic-size:auto 400px}
.tbl-wrap{min-height:200px}
.faq-box{min-height:150px}
.rel-box{min-height:250px}
.fb-box{min-height:120px}
.s-bar{min-height:50px}
