.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--black-color); /* Inherit from shared */
}

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

.page-contact__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #26A9E0; /* Use brand color for hero background */
}

.page-contact__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1000px; /* Example display size */
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-contact__intro-text {
  padding: 60px 0;
  background-color: var(--black-color); /* Keep it dark */
  color: #ffffff;
}

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

.page-contact__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-contact__intro-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-contact__methods-section {
  padding: 60px 0;
  background-color: var(--black-color);
}

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

.page-contact__method-card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark bg */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  color: #ffffff;
}

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

.page-contact__method-icon {
  width: 100%; /* Fill parent container */
  max-width: 300px; /* Allow it to grow up to a reasonable size, but still responsive */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no color change */
}

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

.page-contact__method-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1; /* Pushes button to bottom */
}

.page-contact__email-address,
.page-contact__phone-number {
  font-size: 1.1em;
  margin-top: 15px;
  color: #ffffff;
}

.page-contact__form-section {
  padding: 60px 0;
  background-color: #ffffff; /* Explicit white background */
}

.page-contact__text-dark {
  color: #333333; /* Dark text for light background */
}

.page-contact__form-section .page-contact__section-title {
  color: #26A9E0;
}

.page-contact__form-section .page-contact__section-description {
  color: #333333;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 40px auto 0 auto;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.page-contact__form-submit-btn {
  width: auto;
  padding: 12px 30px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  border-radius: 5px;
}

.page-contact__location-section {
  padding: 60px 0;
  background-color: var(--black-color);
  color: #ffffff;
}

.page-contact__location-content {
  text-align: center;
  margin-top: 40px;
}

.page-contact__address-text {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-contact__location-map {
  width: 100%;
  height: auto;
  max-width: 800px; /* Example display size */
  margin: 30px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-contact__location-call-to-action {
  font-size: 1.1em;
  text-align: center;
  margin-top: 30px;
  color: #f0f0f0;
}

.page-contact__faq-section {
  padding: 60px 0;
  background-color: #ffffff; /* Explicit white background */
}

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

.page-contact__faq-item {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333; /* Dark text for light background */
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f0f0f0;
  color: #333333;
  border-bottom: 1px solid #eee;
  list-style: none; /* For details/summary */
}

.page-contact__faq-item[open] .page-contact__faq-question {
  border-bottom: 1px solid #e0e0e0;
}

.page-contact__faq-qtext {
  flex-grow: 1;
  color: #333333;
}

.page-contact__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-contact__faq-item[open] .page-contact__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
  content: '−'; /* Change content for open state */
}