/* Contact Page Styles */
.contact-header {
  text-align: center;
  margin-bottom: 1.5rem;
  
}

.contact-container {
  max-width: 700px;
  padding-left: .5rem;
  padding-right: .5rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  font-family: 'Segoe UI', Roboto, sans-serif;
  color: #1B1F23;
}

.contact-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: teal;
}

.contact-intro {
  text-align: center;
  font-size: .95rem;
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid #e5e7eb;
}

.contact-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  margin-top: 0.5rem;
  color: teal;
  font-weight: 500;
}
