.page-contact {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text on default light body background */
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-contact__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

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

.page-contact__hero-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__hero-button:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
}

.page-contact__info-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.page-contact__info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.page-contact__contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-contact__card-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-contact__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

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

.page-contact__card-button:hover {
  background-color: #1A4D89;
}

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

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

.page-contact__faq-title {
  font-size: 2.5em;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-contact__faq-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

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

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

.page-contact__register-cta {
  background: linear-gradient(90deg, #0A2463, #E3B505);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

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

.page-contact__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffffff;
}

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

.page-contact__cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #0A2463;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__cta-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-subtitle {
    font-size: 1em;
  }
  .page-contact__info-container {
    grid-template-columns: 1fr;
  }
  .page-contact__faq-title,
  .page-contact__cta-title {
    font-size: 2em;
  }
  .page-contact__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-button,
  .page-contact__card-button,
  .page-contact__faq-button,
  .page-contact__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-contact__card-icon {
    width: 100px;
    height: 100px;
  }
}