.tab-pane {
    display: none;
  }
  .tab-pane.active {
    display: block;
  }
  
/* Base Styles */
.programs-hero {
    /* background: linear-gradient(135deg, #1e3a8a, #3b82f6); */
    background: #1e3a8a;
    color: white;
    padding: 5rem 1rem;
    text-align: center;
    margin-top: 80px;
  }
  
  .programs-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .programs-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Programs Sections */
  .programs-list,
  .special-programs,
  .grade-programs {
    padding: 4rem 1rem;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header h2 {
    font-size: 2.3rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .program-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  
  .program-card:hover {
    transform: translateY(-5px);
  }
  
  .program-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #3b82f6;
  }
  
  .program-content h3 {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
  }
  
  .program-content p {
    color: #4b5563;
    line-height: 1.6;
  }
  
  /* Grade Level Tabs */
  .grade-tabs {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .tabs-header {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tab-button {
    padding: 0.8rem 1.5rem;
    background: #e5e7eb;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .tab-button.active {
    background: #3b82f6;
    color: white;
  }
  
  .tab-pane {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
  }
  
  .tab-pane h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  
  .tab-pane ul {
    list-style-type: none;
  }
  
  .tab-pane li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: #4b5563;
    line-height: 1.6;
  }
  
  .tab-pane li::before {
    content: "•";
    color: #3b82f6;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -0.3rem;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .programs-hero h1 {
      font-size: 2.2rem;
    }
    
    .programs-grid {
      grid-template-columns: 1fr;
    }
    
    .tabs-header {
      flex-direction: column;
    }
    
    .tab-button {
      width: 100%;
    }
  }