/* US Teknoloji sade iletişim sayfası v1 */
.contact-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-simple-card {
  border: 1px solid var(--th-border, #e5e7eb);
  border-radius: 8px;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
}
.contact-simple-card h2 {
  margin: 0 0 12px;
  color: var(--th-text-dark, #0f172a);
  font-size: 24px;
}
.contact-simple-card p,
.contact-simple-card a {
  color: var(--th-text-body, #475569);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}
.contact-simple-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--th-orange, #f97316);
  color: #fff !important;
  font-weight: 900 !important;
}
body.contact-page .sticky-cta {
  display: none !important;
}
@media (max-width: 760px) {
  .contact-simple-grid {
    grid-template-columns: 1fr;
  }
}
