*{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:Arial, Helvetica, sans-serif;
      scroll-behavior:smooth;
    }

    body{
      background:#f4f8fc;
      color:#1a1a1a;
    }

    .container{
      width:90%;
      max-width:1200px;
      margin:auto;
    }

    /* HEADER */
    .header{
      background:#fff;
      position:sticky;
      top:0;
      z-index:9999;
      box-shadow:0 5px 20px rgba(0,0,0,.08);
    }

    .nav{
      display:flex;
      justify-content:space-between;
      align-items:center;
      min-height:80px;
      gap:20px;
    }

    .site-logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      text-decoration:none;
    }

    .logo-mark{
      width:52px;
      height:52px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,#1b79d1,#0f4c81);
      color:#fff;
      font-size:20px;
      font-weight:800;
      letter-spacing:1px;
      box-shadow:0 10px 24px rgba(27,121,209,.28);
      transition:.3s ease;
    }

    .logo-text{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }

    .logo-text strong{
      font-size:20px;
      color:#123b67;
      font-weight:800;
    }

    .logo-text small{
      font-size:12px;
      color:#6b7b8c;
      margin-top:4px;
      letter-spacing:.3px;
    }

    .site-logo:hover .logo-mark{
      transform:translateY(-2px) scale(1.04);
    }

    .site-logo:hover .logo-text strong{
      color:#1b79d1;
    }

    .menu ul{
      list-style:none;
      margin:0;
      padding:0;
    }

    .menu > ul{
      display:flex;
      gap:30px;
      align-items:center;
    }

    .menu a{
      text-decoration:none;
      font-weight:600;
      color:#0f4c81;
      padding:10px 0;
      display:block;
      transition:.3s;
    }

    .menu a:hover{
      color:#1b79d1;
    }

    .dropdown{
      position:relative;
    }

    .submenu{
      position:absolute;
      top:100%;
      left:0;
      background:#fff;
      min-width:220px;
      box-shadow:0 10px 25px rgba(0,0,0,.1);
      border-radius:8px;
      padding:10px 0;
      opacity:0;
      visibility:hidden;
      transform:translateY(10px);
      transition:.3s;
    }

    .submenu li{
      padding:0 15px;
    }

    .submenu a{
      color:#333;
      padding:8px 0;
    }

    .submenu a:hover{
      background:#f3f7fc;
      color:#1b79d1;
    }

    .dropdown:hover .submenu{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }

    /* HERO */
    .hero{
      position:relative;
      background:
        linear-gradient(rgba(15,76,129,.82), rgba(15,76,129,.72)),
        url("https://images.unsplash.com/photo-1529390079861-591de354faf5?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
      color:#fff;
      padding:110px 0;
      overflow:hidden;
    }
    .hero-content{position:relative;z-index:2;max-width:820px;}
    .hero-badge{display:inline-block;padding:10px 16px;border-radius:999px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.22);margin-bottom:20px;font-size:14px;}
    .hero h1{font-size:48px;margin-bottom:14px;line-height:1.08;}
    .hero p{font-size:18px;line-height:1.75;opacity:.95;max-width:760px;}

    /* FAQ */
    .faq-section{
      padding:80px 0;
    }

    .section-title{
      text-align:center;
      margin-bottom:40px;
    }

    .section-title h2{
      font-size:38px;
      color:#123b67;
      margin-bottom:12px;
    }

    .section-title p{
      max-width:760px;
      margin:auto;
      color:#66788a;
      line-height:1.7;
    }

    .faq-wrap{
      display:grid;
      grid-template-columns: 1fr 300px;
      gap:28px;
      align-items:start;
    }

    .faq-list{
      display:grid;
      gap:18px;
    }

    .faq-item{
      background:#fff;
      border-radius:18px;
      box-shadow:0 10px 24px rgba(0,0,0,.05);
      overflow:hidden;
      transition:.3s;
    }

    .faq-item:hover{
      transform:translateY(-4px);
    }

    .faq-question{
      width:100%;
      background:#fff;
      border:none;
      padding:22px 24px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      cursor:pointer;
      font-size:18px;
      font-weight:700;
      color:#123b67;
      text-align:left;
    }

    .faq-icon{
      width:34px;
      height:34px;
      min-width:34px;
      border-radius:50%;
      background:#eef5fd;
      color:#1b79d1;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:20px;
      transition:.3s;
    }

    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height .35s ease;
      background:#fbfdff;
    }

    .faq-answer-content{
      padding:0 24px 22px 24px;
      color:#5f7386;
      line-height:1.75;
      font-size:15px;
    }

    .faq-item.active .faq-icon{
      transform:rotate(45deg);
      background:#1b79d1;
      color:#fff;
    }

    .faq-side{
      display:grid;
      gap:20px;
      position:sticky;
      top:110px;
    }

    .side-card{
      background:#fff;
      border-radius:20px;
      padding:24px;
      box-shadow:0 10px 24px rgba(0,0,0,.05);
    }

    .side-card h3{
      color:#123b67;
      margin-bottom:12px;
      font-size:22px;
    }

    .side-card p{
      color:#66788a;
      line-height:1.7;
      font-size:15px;
      margin-bottom:10px;
    }

    .side-card ul{
      padding-left:18px;
      color:#66788a;
      line-height:1.8;
    }

    .cta-box{
      background:linear-gradient(135deg,#0f4c81,#1b79d1);
      color:#fff;
      border-radius:22px;
      padding:26px;
      box-shadow:0 14px 30px rgba(27,121,209,.24);
    }

    .cta-box h3{
      margin-bottom:12px;
      font-size:22px;
    }

    .cta-box p{
      line-height:1.7;
      margin-bottom:16px;
      font-size:15px;
      opacity:.96;
    }

    .cta-btn{
      display:inline-block;
      padding:12px 18px;
      border-radius:12px;
      background:#fff;
      color:#0f4c81;
      text-decoration:none;
      font-weight:700;
      transition:.3s;
    }

    .cta-btn:hover{
      transform:translateY(-3px);
    }

    /* FOOTER */
    .footer{
      background:#0d2340;
      color:#d5e3f3;
      margin-top:80px;
    }

    .footer-top{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:30px;
      padding:60px 0;
    }

    .footer-logo{
      font-size:26px;
      color:#fff;
      margin-bottom:10px;
    }

    .footer-col h3{
      color:#fff;
      margin-bottom:15px;
    }

    .footer-col p{
      font-size:14px;
      line-height:1.6;
    }

    .footer-col ul{
      list-style:none;
      padding:0;
    }

    .footer-col ul li{
      margin-bottom:10px;
    }

    .footer-col a{
      color:#c9d8ea;
      text-decoration:none;
      transition:.3s;
    }

    .footer-col a:hover{
      color:#1b79d1;
      padding-left:5px;
    }

    .socials{
      margin-top:15px;
      display:flex;
      gap:10px;
    }

    .socials a{
      width:35px;
      height:35px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:#1b79d1;
      border-radius:50%;
      color:white;
      transition:.3s;
    }

    .socials a:hover{
      transform:translateY(-5px);
      background:#0f4c81;
    }

    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.1);
      text-align:center;
      padding:15px;
      font-size:14px;
    }

    @media(max-width:1000px){
      .faq-wrap{
        grid-template-columns:1fr;
      }

      .faq-side{
        position:static;
      }

      .footer-top{
        grid-template-columns:1fr 1fr;
      }
    }

    @media(max-width:700px){
      .menu > ul{
        gap:18px;
        flex-wrap:wrap;
      }

      .hero h1{
        font-size:32px;
      }

      .section-title h2{
        font-size:30px;
      }
    }

    @media(max-width:500px){
      .footer-top{
        grid-template-columns:1fr;
      }

      .faq-question{
        font-size:16px;
        padding:18px;
      }

      .faq-answer-content{
        padding:0 18px 18px 18px;
      }
    }
  

/* ─── PAGE RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid, .features-grid, .programs-grid,
  .news-grid, .footer-grid, .steps-grid, .benefits-grid,
  .cards-grid, .partners-grid, .docs-grid, .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .hero { padding: 70px 0 !important; min-height: auto !important; }
  .hero h1, .hero h2 { font-size: 30px !important; }
  .hero p { font-size: 16px !important; }
  .hero-badge { font-size: 12px; padding: 8px 12px; }
  .section-title h2 { font-size: 28px !important; }
  .cta h2 { font-size: 26px !important; }
  .cta { padding: 50px 20px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .mobility-grid, .schedule-layout, .contact-grid,
  .two-col, .split-grid { grid-template-columns: 1fr !important; }
  .sidebar { position: static !important; }
}
@media (max-width: 560px) {
  .stats-grid, .features-grid, .programs-grid,
  .news-grid, .footer-grid, .steps-grid, .benefits-grid,
  .cards-grid, .partners-grid, .docs-grid, .team-grid {
    grid-template-columns: 1fr !important;
  }
  .container { width: 95% !important; }
  .hero h1, .hero h2 { font-size: 24px !important; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr !important; }
  section { padding: 60px 0 !important; }
  .timeline-line { left: 16px !important; transform: none !important; }
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100% !important; left: 0 !important;
    text-align: left !important; padding: 0 0 24px 44px !important;
  }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { left: 6px !important; right: auto !important; }
}

/* ─── OVERFLOW / SCROLL FIX ──── */
html, body { overflow-x: hidden; max-width: 100%; }
* { max-width: 100%; }
img, video { max-width: 100%; height: auto; }
.schedule-layout { grid-template-columns: 1fr !important; }
@media (max-width: 1100px) {
  .schedule-layout { grid-template-columns: 1fr !important; }
  .sidebar { position: static !important; top: auto; }
}
@media (max-width: 768px) {
  .lesson { grid-template-columns: 1fr !important; }
  .room { align-items: flex-start !important; text-align: left !important; }
}
