.page-contact {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-contact__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for hero section */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-contact__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

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

.page-contact__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-contact__cta-button--primary {
  background-color: #FFD700; /* Gold brand color */
  color: #333333;
  border: 2px solid #FFD700;
}

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

.page-contact__cta-button--secondary {
  background-color: #008000; /* Green brand color */
  color: #ffffff;
  border: 2px solid #008000;
}

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

.page-contact__info-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

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

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

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

.page-contact__info-icon {
  width: 250px; /* Min size 200x200px */
  height: 250px; /* Min size 200x200px */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-contact__info-title {
  font-size: 1.8em;
  color: #008000; /* Green brand color */
  margin-bottom: 15px;
}

.page-contact__info-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-contact__info-detail {
  font-size: 1.1em;
  font-weight: bold;
  color: #FFD700; /* Gold brand color */
  margin-bottom: 20px;
}

.page-contact__info-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #DC143C; /* Red accent color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-contact__info-button:hover {
  background-color: #c01132;
}

.page-contact__form-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
  margin-top: 60px;
}

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

.page-contact__form-title {
  font-size: 2.5em;
  color: #008000; /* Green brand color */
  text-align: center;
  margin-bottom: 20px;
}

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

.page-contact__contact-form {
  display: grid;
  gap: 20px;
}

.page-contact__form-group {
  text-align: left;
}

.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-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700; /* Gold brand color */
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

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

.page-contact__form-submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #FFD700; /* Gold brand color */
  color: #333333;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  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(-3px);
}

.page-contact__cta-section--bottom {
  background-color: #008000; /* Green brand color */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  margin-top: 60px;
}

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

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

.page-contact__cta-description--bottom {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-contact__cta-button--bottom {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
}

.page-contact__cta-button--bottom {
  background-color: #FFD700; /* Gold brand color */
  color: #333333;
  border: 2px solid #FFD700;
}

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

.page-contact__cta-button--secondary-bottom {
  background-color: transparent;
  color: #FFD700; /* Gold brand color */
  border: 2px solid #FFD700;
}

.page-contact__cta-button--secondary-bottom:hover {
  background-color: #FFD700;
  color: #333333;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.8em;
  }
  .page-contact__cta-title--bottom {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    height: 500px;
  }
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__cta-button {
    width: 80%;
    max-width: 300px;
  }
  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__info-card {
    padding: 25px;
  }
  .page-contact__info-icon {
    width: 200px; /* Min size 200x200px */
    height: 200px; /* Min size 200x200px */
  }
  .page-contact__form-container {
    padding: 30px;
  }
  .page-contact__form-title {
    font-size: 2em;
  }
  .page-contact__cta-section--bottom {
    padding: 60px 20px;
  }
  .page-contact__cta-title--bottom {
    font-size: 2em;
  }
  .page-contact__cta-description--bottom {
    font-size: 1em;
  }
  .page-contact__cta-button--bottom {
    width: 80%;
    max-width: 300px;
    margin-bottom: 15px;
  }
  /* Ensure all content images are responsive and do not overflow */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-section {
    height: 400px;
  }
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__hero-container {
    padding: 30px 20px;
  }
  .page-contact__info-title {
    font-size: 1.5em;
  }
  .page-contact__cta-title--bottom {
    font-size: 1.8em;
  }
  .page-contact__cta-button--bottom {
    margin: 10px 0;
  }
}