.page-contact {
  font-family: 'Arial', sans-serif;
  color: #F5F5F5; /* Light text for dark backgrounds */
  background-color: #0A1A3A; /* Main background color */
  line-height: 1.6;
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #0A1A3A 0%, #2a4a8a 100%); /* Dark blue gradient */
  padding: 100px 0 60px;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
}

.page-contact__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto;
  color: #F5F5F5;
}

.page-contact__info-section {
  padding: 60px 0;
  background-color: #1A2E4E; /* Slightly lighter dark blue */
}

.page-contact__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-contact__info-card {
  background-color: #0A1A3A; /* Dark blue background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-contact__info-card:hover {
  transform: translateY(-5px);
}

.page-contact__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Gold tint for icons */
}

.page-contact__info-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact__info-text, .page-contact__text {
  color: #CCCCCC;
  margin-bottom: 10px;
}

.page-contact__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #FFE066; /* Lighter gold on hover */
  text-decoration: underline;
}

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

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

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

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1A2E4E;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

.page-contact__label {
  display: block;
  font-size: 1.1em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__input,
.page-contact__textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #3A5B8A; /* Darker blue border */
  border-radius: 5px;
  background-color: #0A1A3A; /* Dark input background */
  color: #F5F5F5;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.page-contact__input::placeholder,
.page-contact__textarea::placeholder {
  color: #888;
}

.page-contact__input:focus,
.page-contact__textarea:focus {
  border-color: #FFD700;
  outline: none;
}

.page-contact__textarea {
  resize: vertical;
}

.page-contact__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
}

.page-contact__button--primary {
  background-color: #FFD700;
  color: #0A1A3A;
}

.page-contact__button--primary:hover {
  background-color: #FFE066;
}

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

.page-contact__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1A3A;
}

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

.page-contact__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-contact__faq-item {
  background-color: #0A1A3A;
  padding: 25px 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact__faq-answer {
  color: #CCCCCC;
  font-size: 1.05em;
}

.page-contact__faq-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

.page-contact__cta-section {
  background-color: #0A1A3A;
  padding: 80px 0;
  text-align: center;
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  color: #CCCCCC;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero {
    padding: 80px 0 40px;
  }
  .page-contact__title {
    font-size: 2.5em;
  }
  .page-contact__subtitle {
    font-size: 1.1em;
  }
  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__cta-title {
    font-size: 2.2em;
  }
  .page-contact__form {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero {
    padding: 60px 0 30px;
  }
  .page-contact__title {
    font-size: 2em;
  }
  .page-contact__subtitle {
    font-size: 1em;
  }
  .page-contact__info-card {
    padding: 20px;
  }
  .page-contact__info-title {
    font-size: 1.5em;
  }
  .page-contact__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__form {
    padding: 20px;
  }
  .page-contact__faq-question {
    font-size: 1.3em;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
}