.contact-hero {
  padding: 40px 0 24px;
}

.contact-hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.contact-intro {
  font-size: 18px;
  color: #666666;
  max-width: 720px;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-bottom: 50px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 24px;
}

.contact-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.contact-card p {
  color: #555555;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.7;
}

.contact-link {
  color: #b32020;
  font-weight: 700;
  word-break: break-word;
}

.contact-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-hero h1 {
    font-size: 30px;
  }

  .contact-intro {
    font-size: 17px;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-card h2 {
    font-size: 22px;
  }

  .contact-card p {
    font-size: 16px;
  }
}
