.page-contact {
  padding-top: var(--header-offset, 120px);
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-contact__hero-section {
  background: linear-gradient(135deg, #0A2463, #E3B505);
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
}

.page-contact__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-contact__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-contact__btn--primary {
  background-color: #E3B505;
  color: #0A2463;
  border: 2px solid #E3B505;
}

.page-contact__btn--primary:hover {
  background-color: #f5cb51;
  transform: translateY(-2px);
}

.page-contact__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-contact__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-contact__methods-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.page-contact__methods-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__section-title {
  font-size: 2.2em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__section-subtitle {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
}

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

.page-contact__method-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-contact__method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-contact__method-icon {
  width: 250px; /* Minimum 200px */
  height: 187.5px; /* Maintain aspect ratio for 400x300 source */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  /* filter: none; Ensure no color change */
}

.page-contact__method-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__method-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__btn--card {
  background-color: #0A2463;
  color: #ffffff;
  border: 2px solid #0A2463;
  padding: 10px 20px;
}

.page-contact__btn--card:hover {
  background-color: #1a3c7a;
  transform: translateY(-2px);
}

.page-contact__faq-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.page-contact__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__faq-content {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-content p {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 25px;
}

.page-contact__faq-content a {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-contact__faq-content a:hover {
  color: #E3B505;
}

.page-contact__cta-section {
  background: linear-gradient(45deg, #E3B505, #0A2463);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-contact__cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-contact__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

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

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

  .page-contact__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-contact__btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .page-contact__method-grid {
    grid-template-columns: 1fr;
  }
  
  .page-contact__method-icon {
    width: 200px; /* Minimum 200px */
    height: 150px; /* Maintain aspect ratio for 400x300 source */
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__section-title,
  .page-contact__cta-title {
    font-size: 1.5em;
  }
  .page-contact__hero-section,
  .page-contact__methods-section,
  .page-contact__faq-section,
  .page-contact__cta-section {
    padding: 40px 15px;
  }
  .page-contact__method-card {
    padding: 20px;
  }
  .page-contact__faq-content {
    padding: 20px;
  }
}