.page-contact {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, main offset handled by body in shared.css */
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-contact__hero-section {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-contact__hero-content {
  max-width: 800px;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__main-title {
  font-size: clamp(2em, 3.5vw, 2.8em);
  color: #2F6BFF;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-contact__hero-description {
  font-size: 1.1em;
  color: #1F2D3D;
  margin-bottom: 25px;
}

.page-contact__hero-cta {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px #A5C4FF; /* Glow color */
}

.page-contact__hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px #A5C4FF;
}

.page-contact__section-title {
  font-size: 2.2em;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__info-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-contact__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-contact__method-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-contact__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-contact__method-icon {
  width: 100%; /* Ensure image fills card area */
  height: 200px; /* Fixed height for consistency */
  object-fit: contain; /* Ensure image fits without cropping */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-contact__method-title {
  font-size: 1.5em;
  color: #2F6BFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__method-text {
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-contact__method-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #2F6BFF;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-contact__method-link:hover {
  color: #6FA3FF;
  border-color: #6FA3FF;
}

.page-contact__form-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #D6E2FF;
}

.page-contact__form-group {
  margin-bottom: 20px;
}

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #1F2D3D;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #D6E2FF;
  border-radius: 6px;
  font-size: 1em;
  color: #1F2D3D;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #2F6BFF;
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__form-submit-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px #A5C4FF; /* Glow color */
}

.page-contact__form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px #A5C4FF;
}

.page-contact__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-contact__faq-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-contact__faq-item {
  background-color: #FFFFFF;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-contact__faq-question {
  font-size: 1.3em;
  color: #2F6BFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__faq-answer {
  color: #1F2D3D;
}

.page-contact__faq-answer a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-contact__faq-answer a:hover {
  text-decoration: underline;
}

.page-contact__faq-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-content {
    padding: 15px;
  }

  .page-contact__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-contact__hero-description,
  .page-contact__section-description {
    font-size: 1em;
  }

  .page-contact__hero-cta,
  .page-contact__form-submit-btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-contact__section-title {
    font-size: 1.8em;
  }

  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__method-card {
    padding: 20px;
  }

  .page-contact__method-icon {
    height: 150px; /* Adjust height for smaller screens */
  }

  .page-contact__form {
    padding: 20px;
  }

  .page-contact__faq-question {
    font-size: 1.1em;
  }

  /* Critical: prevent content overflow for images */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-content {
    padding: 10px;
  }

  .page-contact__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

  .page-contact__section-title {
    font-size: 1.5em;
  }

  .page-contact__hero-description,
  .page-contact__section-description,
  .page-contact__method-text,
  .page-contact__faq-answer {
    font-size: 0.95em;
  }

  .page-contact__form-label {
    font-size: 0.95em;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 10px;
    font-size: 0.95em;
  }
}