.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-contact__hero {
  position: relative;
  background-image: url('[GALLERY:hero:fun88,contact_us,support_team,customer_service]');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-contact__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 36, 99, 0.7);
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3BA2E;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-contact__hero-button {
  display: inline-block;
  background-color: #E3BA2E;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__hero-button:hover {
  background-color: #f5d15c;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-contact__section-intro {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__methods {
  padding: 60px 0;
  background-color: #fff;
}

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

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

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

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

.page-contact__method-description {
  color: #666;
  margin-bottom: 25px;
}

.page-contact__method-button {
  display: inline-block;
  background-color: #0A2463;
  color: #E3BA2E;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__method-button:hover {
  background-color: #1a3e7a;
  color: #f5d15c;
}

.page-contact__faq {
  padding: 60px 0;
  text-align: center;
}

.page-contact__faq-button {
  display: inline-block;
  background-color: #E3BA2E;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 30px;
}

.page-contact__faq-button:hover {
  background-color: #f5d15c;
}

.page-contact__office-info {
  background-color: #0A2463;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-contact__office-info .page-contact__section-title {
  color: #E3BA2E;
}

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

.page-contact__info-item {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.page-contact__info-heading {
  font-size: 1.5em;
  color: #E3BA2E;
  margin-bottom: 10px;
}

.page-contact__info-text {
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }

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

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

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

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

  .page-contact__hero-button,
  .page-contact__faq-button {
    padding: 12px 20px;
    font-size: 0.9em;
  }

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

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