.contact-us-page {
  min-height: calc(100vh - 200px);
  background-color: #eef2f6;
  padding: 90px 20px 48px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.contact-us-page,
.contact-us-page * {
  text-transform: none !important;
}

.contact-us-card {
  width: 100%;
  max-width: 720px;
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 30px 24px 20px;
  color: #4c5564;
}

.contact-us-title {
  margin: 0 0 16px;
  text-align: center;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f2937;
}

.contact-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-us-form-section h2,
.contact-us-info-section h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f2937;
}

.contact-us-form {
  display: flex;
  flex-direction: column;
}

.contact-us-form label {
  margin-bottom: 6px;
  font-size: 12px;
  color: #4b5563;
}

.contact-us-form input,
.contact-us-form textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  padding: 10px;
  font-size: 14px;
  color: #374151;
  background: #fff;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.contact-us-form textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-us-form button {
  margin-top: 2px;
  border: none;
  border-radius: 4px;
  background: #5a56e2;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
}

.contact-us-form button:hover {
  background: #4c46d3;
}

.contact-us-info-block {
  margin-bottom: 14px;
}

.contact-us-info-block:last-child {
  margin-bottom: 0;
}

.contact-us-info-block h3 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.3;
  color: #1f2937;
}

.contact-us-info-block p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-us-card {
    padding: 24px 16px 18px;
  }

  .contact-us-title {
    font-size: 30px;
  }

  .contact-us-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
