.contact-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.contact-card {
  background: #f8f9fb;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  transition: transform 0.5s ease;
}

.contact-card h3 {
  color: #00aeef !important;
  margin: 0 0 12px;
  font-size: 20px;
  color: #1f2a44;
}

.contact-card p {
  margin: 6px 0;
  font-size: 16px;
  line-height: 1.5;
}

.contact-card .role {
  color: #666;
  font-size: 14px;
  margin-top: -4px;
  margin-bottom: 12px;
}

.contact-card a {
  color: #4a90e2;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card:hover {
	transform: scale(1.20);
	  box-shadow:
	  0 10px 40px rgba(0, 0, 0, 0.7),
      0 0 20px rgba(0, 123, 255, 0.5) !important;
}

.contact-section .contact-card {
  background: #f8f9fb;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-section .contact-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  color: #1f2a44;
}

.contact-section .contact-card p {
  margin: 6px 0;
  font-size: 16px;
  line-height: 1.5;
  color: inherit;
}

.contact-section .contact-card .role {
  color: #666;
  font-size: 14px;
  margin-top: -4px;
  margin-bottom: 12px;
}

.contact-section .contact-card a {
  color: #4a90e2;
  text-decoration: none;
}

.contact-section .contact-card a:hover {
  text-decoration: underline;
}

@media (max-width: 35em) {
.contact-section {
  grid-template-columns: 220px;
  justify-content: center;
}
.contact-card:hover {
	transform: scale(1.40);
	  box-shadow:
	  0 10px 40px rgba(0, 0, 0, 0.9),
      0 0 20px rgba(0, 123, 255, 0.5);
}
}
