.school-detail-container {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      overflow: hidden;
      margin-bottom: 20px;
    }
    
    .school-header {
      position: relative;
      min-height: 40px;
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
      background-size: cover;
      background-position: center;
      color: white;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    
    .school-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 8px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }
    
    .school-subtitle {
      font-size: 16px;
      opacity: 0.9;
    }
    
    .school-badges {
      margin-top: 15px;
    }
    
    .school-badge {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 14px;
      margin-right: 8px;
      backdrop-filter: blur(5px);
    }
    
    .school-content {
      padding: 30px;
    }
    
    .info-section {
      margin-bottom: 30px;
    }
    
    .section-heading {
      font-size: 20px;
      font-weight: bold;
      color: #333;
      margin-bottom: 15px;
      padding-bottom: 8px;
      border-bottom: 2px solid #4a90e2;
      display: flex;
      align-items: center;
    }
    
    .section-heading i {
      margin-right: 8px;
      color: #4a90e2;
    }
    
    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
    }
    
    .info-item {
      background: #f8fafc;
      padding: 15px;
      border-radius: 8px;
      border-left: 4px solid #4a90e2;
    }
    
    .info-label {
      font-size: 13px;
      color: #666;
      margin-bottom: 5px;
    }
    
    .info-value {
      font-size: 16px;
      font-weight: 500;
      color: #222;
    }
    
    .description-text {
      line-height: 1.8;
      color: #444;
      font-size: 15px;
    }
    
    .action-buttons {
      display: flex;
      gap: 12px;
      margin-top: 25px;
    }
    
    .action-btn {
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s;
      border: none;
      font-size: 15px;
    }
    
    .primary-btn {
      background: #4a90e2;
      color: white;
    }
    
    .secondary-btn {
      background: #f0f4f8;
      color: #333;
    }
    
    .action-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .map-container {
      height: 200px;
      background: #eee;
      border-radius: 8px;
      margin-top: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
      font-size: 14px;
    }

    .school-nav {
      display: flex;
      justify-content: space-between;
      margin-top: 32px;
      padding-top: 20px;
      border-top: 1px solid #f0f0f0;
    }
    
    .school-nav a {
      color: #1890ff;
      text-decoration: none;
      max-width: 45%;
    }
    
    .school-nav a:hover {
      text-decoration: underline;
    }
