/* contact.css - Custom styles for Get in Touch page */
.contact-title {
  font-size: 2.1em;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 12px;
}
.contact-lead {
  font-size: 1.13em;
  color: #374151;
  max-width: 700px;
  margin: 0 auto 32px auto;
  font-weight: 500;
  line-height: 1.6;
}
.contact-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(37,99,235,0.07);
  padding: 32px 18px 24px 18px;
  margin-bottom: 0;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.18s;
}
.contact-card:hover {
  box-shadow: 0 8px 32px 0 rgba(37,99,235,0.13);
}
.contact-email {
  color: #2563eb;
  font-size: 1.13em;
  font-weight: 700;
  text-decoration: underline;
  margin-top: 8px;
}
.contact-address {
  color: #374151;
  font-size: 1.08em;
  margin-top: 8px;
}
.contact-chat-link {
  color: #16a34a;
  font-size: 1.13em;
  font-weight: 700;
  text-decoration: underline;
  margin-top: 8px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .contact-title { font-size: 1.3em; }
  .contact-lead { font-size: 1em; }
  .contact-card { padding: 18px 8px 12px 8px; }
}
