/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* Contact Hero */
.contact-hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1d3557, #457b9d);
  color: #fff;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card i {
  font-size: 2rem;
  color: #e63946;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.4rem;
  color: #1d3557;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.btn-link {
  text-decoration: none;
  font-weight: 600;
  color: #e63946;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: #d62828;
}