.page-contact {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure spacing for fixed header */
}

.page-contact__hero-section {
  background-color: #0A2342;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-contact__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-contact__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.page-contact__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

.page-contact__methods-title {
  font-size: 2.2em;
  color: #0A2342;
  margin-bottom: 15px;
}

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

.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: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.page-contact__method-icon {
  width: 250px; /* Minimum 200px */
  height: 200px; /* Minimum 200px */
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
}

.page-contact__method-heading {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
}

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

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

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

.page-contact__form-section {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.page-contact__form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

.page-contact__form-title {
  font-size: 2.2em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 15px;
}

.page-contact__form-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 30px;
}

.page-contact__contact-form {
  display: flex;
  flex-direction: column;
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333333;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

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

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #aaaaaa;
}

.page-contact__form-submit-button {
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__form-submit-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-contact__social-container {
  max-width: 1000px;
  margin: 0 auto;
}

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

.page-contact__social-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-contact__social-link {
  display: inline-flex;
  align-items: center;
  background-color: #FFD700;
  color: #0A2342;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-link:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Basic icons for social links (can be replaced with actual SVG/font icons) */
.page-contact__social-link--facebook::before {
  content: 'f'; /* Placeholder */
  font-family: 'Arial', sans-serif; /* Replace with Font Awesome or similar */
  margin-right: 8px;
}
.page-contact__social-link--twitter::before {
  content: 't'; /* Placeholder */
  font-family: 'Arial', sans-serif; /* Replace with Font Awesome or similar */
  margin-right: 8px;
}
.page-contact__social-link--instagram::before {
  content: 'i'; /* Placeholder */
  font-family: 'Arial', sans-serif; /* Replace with Font Awesome or similar */
  margin-right: 8px;
}

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

  .page-contact__hero-description,
  .page-contact__methods-intro,
  .page-contact__form-description,
  .page-contact__social-description {
    font-size: 1em;
  }

  .page-contact__methods-title,
  .page-contact__form-title,
  .page-contact__social-title {
    font-size: 1.8em;
  }

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

  .page-contact__hero-section,
  .page-contact__methods-section,
  .page-contact__form-section,
  .page-contact__social-section {
    padding: 40px 15px;
  }

  .page-contact__form-container {
    padding: 30px 20px;
  }

  .page-contact__method-icon {
    width: 200px; /* Minimum 200px */
    height: 150px; /* Adjusted for smaller screens */
  }

  /* Ensure images do not overflow on mobile */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-contact__hero-cta-button,
  .page-contact__method-button,
  .page-contact__form-submit-button,
  .page-contact__social-link {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}