body {
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
  background: rgb(29, 29, 29);
  color: #ffffff;
}

.contact-page {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.contact-page h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.subtitle {
  color: #cccccc;
  margin-bottom: 50px;
}

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

.contact-card {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 18px;
  padding: 30px 20px;
  text-decoration: none;
  color: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

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

.icon {
  font-size: 38px;
  display: block;
  margin-bottom: 12px;
}

.contact-card h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.contact-card p {
  color: #bbbbbb;
  font-size: 15px;
}

/* Mobile spacing */
@media (max-width: 480px) {
  .contact-page h1 {
    font-size: 32px;
  }
}
