/* contacts.css */

.page.contacts-page {
  max-width: 960px;
  margin: 80px auto 40px auto;
  margin-top: 9%;
  padding: 0 20px;
  font-family: 'Helvetica', sans-serif;
  color: #111111;
  line-height: 1.6;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

/* Page Hero */
.page-hero {
  text-align: center;
  margin-bottom: 50px;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1rem;
  color: #333333;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Methods Section */
.contact-methods {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.contact-block {
  flex: 1 1 280px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-icon {
  display: inline-block;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.contact-block h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111111;
}

.contact-block p {
  font-size: 0.95rem;
  color: #555555;
  white-space: pre-line; /* preserves line breaks */
}

/* Responsive */
@media (max-width: 768px) {

  .page.contacts-page {
    margin-top: 20%;
  }

  .contact-methods {
    flex-direction: column;
  }

  .contact-block {
    flex: 1 1 100%;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero p {
    font-size: 0.95rem;
  }
}
