 .c1-squad-section {
      text-align: center;
      padding: 4rem 1rem 3rem 1rem;
    }

    .c1-squad-section h1 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: #38b6ff;
    }

    .station-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* reduced from 280px */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

    .station-card {
      background: rgba(255, 255, 255, 0.05);
      padding: 2rem 1.5rem;
      border-radius: 12px;
      transition: all 0.3s ease;
      border: 1px solid #38b6ff30;
      text-align: center;
    }

    .station-card:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(56, 182, 255, 0.2);
    }

    .station-card i {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #38b6ff;
    }

    .station-card h2 {
      margin-bottom: 0.5rem;
      font-size: 1.5rem;
      color: #ffffff;
    }

    .station-card .target {
      font-weight: bold;
      color: #fdd835;
      margin-bottom: 0.5rem;
    }

    .station-card p {
      font-size: 1rem;
      color: #e0e0e0;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .c1-squad-section h1 {
        font-size: 2rem;
      }

      .station-card i {
        font-size: 2rem;
      }

      .station-card h2 {
        font-size: 1.3rem;
      }
	  
	  .station-grid {
    grid-template-columns: 1fr;
  }
    }