@media (max-width: 600px) {
  .navbar {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .header-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
    height: 120px;
  }
  .header-img {
    display: block;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-width: 120px;
    height: auto;
  }
}
@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .header-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
  }
  .header-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .navbar-action {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .contact-map iframe {
    width: 100% !important;
    max-width: 100vw;
    height: 320px !important;
    min-width: 0;
  }
  .contact-form {
    padding: 0 4vw;
  }
}
/* --- Responsive Contact Form & Map, Center Header Button --- */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    border-radius: 0 0 16px 16px;
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .contact-map {
    margin-top: 1.2rem;
    min-height: 160px;
    font-size: 1rem;
  }
  .contact-form {
    width: 100%;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
  }
  .contact-title {
    font-size: 1.2rem;
  }
  .contact-map {
    min-height: 100px;
    font-size: 0.95rem;
  }
  .form-btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
}

/* Center Contact Us button in header */
.header-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* --- Responsive, header img hide, price card width --- */
@media (max-width: 900px) {
  .header-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .header-left, .header-right {
    min-width: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .header-title {
    font-size: 2rem;
  }
  .header-img {
    max-width: 220px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: 400px;
    max-width: 90vw;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 0 12px;
  }
  .navbar-menu {
    gap: 12px;
    font-size: 16px;
  }
  .header-title {
    font-size: 1.3rem;
  }
  .header-right {
    display: none !important;
  }
  .card {
    min-height: 320px;
    max-width: 98vw;
    padding: 12px;
  }
  .pricing-section h2 {
    font-size: 1.3rem;
  }
}

/* Make price cards a bit smaller on desktop */
.cards {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  max-width: 320px;
  margin: 0 auto;
}
  body {
      font-family: Arial, sans-serif;
      background: #f9fafb;
      margin: 0;
      /* padding: 40px; */
    }
    .pricing-section {
      max-width: 1200px;
      margin: auto;
      margin-bottom: 50px;
      text-align: center;
    }
    .pricing-section h2 {
      font-size: 32px;
      margin-bottom: 20px;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    .card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s;
      min-height: 500px;
    }
    .card:hover {
      transform: translateY(-5px);
    }
    .card h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }
    .card p {
      font-size: 14px;
      color: #555;
      margin-bottom: 20px;
    }
    .features {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
      text-align: left;
    }
    .features li {
      margin-bottom: 10px;
    }
    .price {
      font-size: 26px;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .lessons {
      font-size: 13px;
      color: #666;
      margin-bottom: 20px;
    }
    .btn {
      background: #0B3772;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s;
      width: 100%;
    }
    .btn:hover {
      background: #1d4ed8;
    }
    .links {
      margin-top: 10px;
      font-size: 14px;
    }
    .links a {
      margin: 0 10px;
      color: #0B3772;
      text-decoration: underline;
      cursor: pointer;
    }
    .highlight {
    box-shadow: 0 10px 25px rgba(0,0,0,0.28);
}


.navbar {
    width: 100%;
    background: #0B3772;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 64px;
    box-sizing: border-box;
    /* margin-bottom: 32px; */
  }
  .navbar-logo img {
    height: 40px;
  }
  .navbar-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    align-items: center;
  }
  .navbar-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .navbar-menu li a:hover {
    color: #ffd700;
  }
  .navbar-action {
    display: flex;
    align-items: center;
  }
  .apply-btn {
    background: #EDEDED;
    color: #0B3772;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
  }
  .apply-btn:hover {
    background: #fff;
  }

  .site-header {
    background: #0B3772;
    padding-top: 30px;
    width: 100%;
    box-sizing: border-box;
  }
  .header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
    }
  .header-left {
    flex: 1 1 400px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 320px;
  }
  .header-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 18px;
    color: #fff;
    line-height: 1.1;
  }
  .header-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #fff;
    opacity: 0.85;
  }
  .header-btn {
  background: #EDEDED;
  color: #0B3772;
  border: none;
  border-radius: 24px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
  margin-bottom: 40px;
  }
  .header-btn:hover {
    background: #fff;
    color: #0B3772;
  }
  .header-right {
  flex: 1 1 320px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 220px;
  margin-top: 0;
  }
  .header-img {
    max-width: 320px;
    width: 100%;
  }
   

    /* Reset & base styles */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; font-family: 'Inter', Arial, sans-serif; background: #fff; }
    body { min-height: 100vh; }
    :focus-visible { outline: 2px solid #0B3772; outline-offset: 2px; }
    
    /* Achievements Section */
    .achievements-section {
      background: #0B3772;
      padding: 2.5rem 1rem 5rem 1rem;
      color: #fff;
      text-align: center;
      margin-bottom: 30px;
    }
    .achievements-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 2rem;
      letter-spacing: 1px;
    }
    .achievements-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .achievement-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(11,55,114,0.10);
      padding: 2rem 1rem 1.5rem 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #0B3772;
      min-height: 180px;
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.25s, transform 0.25s;
    }
    .achievement-card.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .achievement-number {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      letter-spacing: 1px;
    }
    .achievement-label {
      font-size: 1rem;
      font-weight: 600;
      color: #0B3772;
      opacity: 0.85;
    }
    /* Contact Section */
    .contact-section {
      background: #fff;
      padding: 2.5rem 1rem 2rem 1rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
      border-radius: 0 0 24px 24px;
    }
    .contact-title {
      grid-column: 1 / -1;
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: #0B3772;
      margin-bottom: 2rem;
      letter-spacing: 1px;
    }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      align-items: stretch;
      justify-content: center;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .form-label {
      font-size: 0.95rem;
      font-weight: 600;
      color: #0B3772;
      margin-bottom: 0.2rem;
    }
    .form-input, .form-textarea {
      background: #f3f4f6;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      padding: 0.7rem 1rem;
      font-size: 1rem;
      font-family: inherit;
      color: #0B3772;
      transition: border 0.18s, box-shadow 0.18s;
    }
    .form-input:focus, .form-textarea:focus {
      border: 1.5px solid #0B3772;
      box-shadow: 0 2px 8px rgba(11,55,114,0.10);
    }
    .form-textarea {
      min-height: 100px;
      resize: vertical;
    }
    .form-btn {
      background: #0B3772;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 0.9rem 2.2rem;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      margin-top: 0.5rem;
      box-shadow: 0 2px 12px rgba(11,55,114,0.10);
      transition: background 0.18s, box-shadow 0.18s;
      outline: none;
    }
    .form-btn:hover, .form-btn:focus {
      background: #09306a;
      box-shadow: 0 4px 18px rgba(11,55,114,0.18);
    }
    .form-error {
      color: #d32f2f;
      font-size: 0.9rem;
      margin-top: -0.5rem;
      margin-bottom: 0.5rem;
    }
    .contact-map {
      background: #e6e6e6;
      border-radius: 12px;
      min-height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #0B3772;
      font-weight: 700;
      text-align: center;
      letter-spacing: 1px;
      margin-top: 2.5rem;
    }
    /* Footer */
    .footer {
      background: #0B3772;
      color: #fff;
      text-align: center;
      padding: 2rem 1rem 1rem 1rem;
      font-size: 1rem;
    }
    .footer-logos {
      margin-bottom: 0.7rem;
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: 1px;
      color: #d1d5db !important;
    }
    .footer-logos a {
      color: #d1d5db ;
    }
      .footer-logos a:hover {
      color: #fff ;
    }
    .footer-copyright {
      font-size: 0.9rem;
      opacity: 0.8;
    }
    /* Responsive */
    @media (max-width: 768px) {
      .achievements-cards {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }
      .contact-section {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        border-radius: 0 0 16px 16px;
      }
      .contact-map {
        margin-top: 1.2rem;
        min-height: 160px;
      }
      .footer {
        padding: 1.2rem 0.5rem 0.7rem 0.5rem;
      }
    }
    @media (max-width: 480px) {
      .achievements-title, .contact-title {
        font-size: 1.5rem;
      }
      .achievement-number {
        font-size: 1.3rem;
      }
      .footer-logos {
        font-size: 1rem;
      }
    }