.page-contact {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

.page-contact__hero-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  padding-top: 10px; /* Small top padding as per rules */
}

.page-contact__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9; /* Matches 1920x1080 */
  object-fit: cover;
  object-position: center;
}

.page-contact__hero-content {
  text-align: center;
  padding: 40px 15px;
  background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white to ensure text readability */
  margin-top: -5px; /* Adjust to visually connect with image, without overlapping text on image */
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-contact__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem); /* Using clamp for responsive H1 */
  color: #2F6BFF; /* Main brand color for H1 */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-contact__description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #1F2D3D;
}

.page-contact__section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #2F6BFF;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-contact__section-description {
  font-size: 1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
  color: #1F2D3D;
}

.page-contact__methods-section,
.page-contact__faq-section,
.page-contact__map-section {
  padding: 40px 0;
  margin-bottom: 20px;
}

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

.page-contact__method-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  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.1);
}

.page-contact__method-icon {
  width: 200px; /* Display width, matches HTML attribute */
  height: 200px; /* Display height, matches HTML attribute */
  margin: 0 auto 20px auto;
  display: block;
  object-fit: contain;
  filter: none; /* Ensure no CSS filter */
}

.page-contact__method-title {
  font-size: 1.4rem;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-contact__method-text {
  font-size: 0.95rem;
  color: #1F2D3D;
  line-height: 1.5;
  margin-bottom: 25px;
}

.page-contact__method-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-contact__method-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-contact__faq-question {
  font-size: 1.15rem;
  color: #000000; /* Custom Color_1776249996415 */
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  background-color: #F8F9FA;
}

.page-contact__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #2F6BFF;
  transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-contact__faq-answer {
  font-size: 1rem;
  color: #1F2D3D;
  padding: 0 25px 20px 25px;
  margin: 0;
  line-height: 1.6;
  display: none; /* Hidden by default, toggled by JS */
}

.page-contact__map-placeholder {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  background-color: #E0E7EB;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-contact__map-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none; /* Ensure no CSS filter */
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-contact__container {
    padding: 0 20px;
  }

  .page-contact__hero-content {
    padding: 30px 15px;
  }

  .page-contact__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-contact__description {
    font-size: 1rem;
  }

  .page-contact__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

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

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

@media (max-width: 768px) {
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  /* Content area images must not display smaller than 200px */
  .page-contact__method-icon {
    width: 200px; /* Ensure display size is at least 200px */
    height: 200px;
  }
}

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

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

  .page-contact__description {
    font-size: 0.95rem;
  }

  .page-contact__section-title {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }

  .page-contact__section-description {
    font-size: 0.9rem;
  }

  .page-contact__method-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-contact__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-contact__faq-question::after {
    right: 20px;
    font-size: 1.2rem;
  }

  .page-contact__faq-answer {
    font-size: 0.9rem;
    padding: 0 20px 15px 20px;
  }
}