.contact-page {
  background: linear-gradient(180deg, #f5f6f8 0%, #eef1f4 100%);
  padding: 54px 20px 84px;
}

.contact-section {
  max-width: 1120px;
  margin: 0 auto;
}

.contact-container {
  background: #ffffff;
  border: 1px solid #dce3ea;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(19, 34, 56, 0.08);
  padding: 32px;
}

.contact-intro {
  margin-bottom: 24px;
}

.contact-eyebrow {
  margin: 0 0 8px;
  color: #3d5d86;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.contact-intro h1 {
  margin: 0 0 10px;
  color: #182a42;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
}

.contact-description {
  margin: 0;
  max-width: 720px;
  color: #495668;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.contact-form {
  margin-top: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  color: #223041;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #c9d3df;
  border-radius: 10px;
  background: #fcfdff;
  color: #1d2a3a;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 15px;
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #375882;
  box-shadow: 0 0 0 3px rgba(55, 88, 130, 0.14);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field-full {
  grid-column: 1 / -1;
}

.contact-submit {
  margin-top: 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f344f 0%, #2f4d70 100%);
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 13px 26px;
  min-width: 180px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(22, 40, 62, 0.24);
}

@media (max-width: 900px) {
  .contact-page {
    padding: 36px 14px 64px;
  }

  .contact-container {
    padding: 22px;
    border-radius: 14px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-submit {
    width: 100%;
  }
}
