.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray text for contrast on dark background */
  background-color: #0d124b; /* A slightly lighter shade of primary dark blue for overall background */
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #1A237E 0%, #0d124b 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #CCCCCC; /* Lighter text for description */
}

.page-contact__contact-methods {
  padding: 60px 0;
  background-color: #1A237E; /* Primary dark blue */
}

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

.page-contact__method-item {
  background-color: #283593; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-contact__method-item:hover {
  transform: translateY(-5px);
  background-color: #3f51b5; /* Even lighter on hover */
}

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-contact__method-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for method titles */
  margin-bottom: 15px;
}

.page-contact__method-text {
  font-size: 1em;
  color: #B0B0B0; /* Light gray for method text */
  margin-bottom: 20px;
}

.page-contact__method-link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__method-link:hover {
  color: #ffe066; /* Lighter gold on hover */
  text-decoration: underline;
}

.page-contact__form-section {
  padding: 60px 0;
  background-color: #0d124b; /* Dark background */
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
}

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1A237E; /* Primary dark blue for form background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.page-contact__form-label {
  display: block;
  font-size: 1.1em;
  color: #FFD700; /* Gold for labels */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #3f51b5; /* Lighter dark blue border */
  border-radius: 5px;
  background-color: #283593; /* Medium dark blue for input background */
  color: #E0E0E0; /* Light text for input */
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #90CAF9; /* Light blue placeholder */
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700; /* Gold border on focus */
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text on gold button */
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.page-contact__button:hover {
  background-color: #ffe066; /* Lighter gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-contact__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-contact__cta-section {
  background: linear-gradient(45deg, #1A237E 0%, #283593 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
}

.page-contact__cta-title {
  font-size: 3em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-contact__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

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

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

  .page-contact__contact-form {
    padding: 30px;
  }

  .page-contact__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-contact__hero {
    padding: 60px 0;
  }

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

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

  .page-contact__method-item {
    padding: 20px;
  }

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

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

  .page-contact__contact-form {
    padding: 20px;
  }

  .page-contact__form-label {
    font-size: 1em;
  }

  .page-contact__button {
    width: 100%;
  }
}