/* Responsive Styles */

/* Large Devices (Desktops) */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .page-banner h1 {
    font-size: 36px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-map {
    margin-top: 30px;
  }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  header .container {
    position: relative;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--light-text);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
  }
  
  nav.active {
    max-height: 300px;
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  nav ul li {
    margin: 10px 0;
  }
  
  .page-banner {
    padding: 60px 0;
  }
  
  .page-banner h1 {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .program-categories,
  .programs-list,
  .certificates-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
  
  .page-banner h1 {
    font-size: 28px;
  }
  
  .page-banner p {
    font-size: 16px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  
  .contact-card,
  .program-card {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-section {
    margin-bottom: 30px;
  }
}