/* Main Styling for the IT & Pitcrew Sections */
.feur-main {
  padding: 60px 20px;
  background-color: #fff;
  font-family: "Helvetica Neue", sans-serif;
}

.feur-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feur-card {
  background: #f9f9f9;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  color: #222;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feur-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  border-color: #0073e6;
}

.feur-card h2 {
  font-size: 22px;
  margin: 16px 0 10px;
}

.feur-card p {
  font-size: 14px;
  color: #555;
}

.feur-card .icon {
  font-size: 36px;
  margin-bottom: 12px;
}

/* IT Button Styling */
.feur-card.it {
  background: linear-gradient(135deg, #e8f1fd, #f0f6ff);
}

/* Development Button Styling */
.feur-card.dev {
  background: linear-gradient(135deg, #fef3f3, #fff5f0);
}

/* Adjustments for Mobile and Smaller Screens */
@media screen and (max-width: 768px) {
  .feur-grid {
    grid-template-columns: 1fr; /* Stack buttons on mobile */
  }
}

