/* SCHOOLS PAGE */
.schools {
    padding: 5rem 3rem;
    background: var(--bg-light);
    color: var(--text-dark);
  }
  
  .schools-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .schools-header h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .schools-header p {
    color: #555;
    font-size: 1rem;
  }
  
  /* Search section */
  .school-search {
    background: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
  }
  
  .school-search input,
  .school-search select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    width: 220px;
    transition: border-color 0.3s ease;
  }
  
  .school-search input:focus,
  .school-search select:focus {
    border-color: var(--primary-color);
  }
  
  /* School list */
  .school-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .district-section {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(22, 71, 230, 0.08);
  }
  
  .district-section h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .school-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
  }
  
  .school-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .school-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(22, 71, 230, 0.1);
  }
  
  .school-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
  }
  
  .school-card p {
    font-size: 0.9rem;
    color: #555;
  }