body {
  background: #f8fafc;
  color: #1e293b;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.contact-section {
  text-align: center;
  padding: 120px 20px 80px;
}

.contact-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #001b49;
  margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}

.contact-section p {
  color: #475569;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-card {
  flex: 1 1 300px;
  max-width: 330px;
  padding: 40px 25px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  text-align: center;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.icon-circle {
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-card h3 {
  color: #001b49;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card a {
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #0284c7;
}

.contact-card p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Color variations */
.contact-card.pink {
  background: #ffeaf4;
}
  
.contact-card.blue {
  background: #e8f2ff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }
}
