.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #ffffff; /* Assuming body background is light */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-contact__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #26A9E0, #4AD0FF);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

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

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

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

.page-contact__btn-primary,
.page-contact__btn-secondary,
.page-contact__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  text-align: center;
}

.page-contact__btn-primary {
  background: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-contact__btn-primary:hover {
  background: #D46F00;
  border-color: #D46F00;
}

.page-contact__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #ffffff;
}

.page-contact__btn-secondary:hover {
  background: #f0f0f0;
  color: #1a8fbd;
  border-color: #f0f0f0;
}

.page-contact__btn-text {
  background: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  padding: 8px 15px;
}

.page-contact__btn-text:hover {
  background: #26A9E0;
  color: #ffffff;
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-contact__video-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f8f8f8;
}

.page-contact__video-title {
  color: #26A9E0;
  margin-top: 40px;
  font-size: 2.2em;
}

.page-contact__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px; /* Max width for video */
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-contact__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.page-contact__video-overlay-link {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10;
  cursor: pointer;
  background: rgba(0,0,0,0); /* Transparent overlay */
}

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

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

.page-contact__methods-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.page-contact__method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-contact__card-icon {
  width: 100%; /* Ensure icon fills card width responsively */
  max-width: 200px; /* Max width for icons */
  height: auto;
  margin-bottom: 20px;
}

.page-contact__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

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

.page-contact__why-us-section {
  padding: 80px 20px;
  color: #ffffff;
}

.page-contact__dark-section {
  background: #26A9E0; /* Brand color as background */
  color: #ffffff; /* White text for dark background */
}

.page-contact__dark-section .page-contact__section-title,
.page-contact__dark-section .page-contact__section-description,
.page-contact__dark-section .page-contact__feature-title,
.page-contact__dark-section .page-contact__feature-text {
  color: #ffffff;
}

.page-contact__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__feature-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.page-contact__feature-icon {
  width: 100%; /* Ensure icon fills card width responsively */
  max-width: 150px; /* Max width for feature icons */
  height: auto;
  margin-bottom: 20px;
}

.page-contact__feature-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-contact__feature-text {
  font-size: 0.95em;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-contact__issues-section {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.page-contact__issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__issue-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__issue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-contact__issue-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

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

.page-contact__faq-section {
  padding: 80px 20px;
}

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

.page-contact__faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-contact__dark-section .page-contact__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #f9f9f9;
  color: #26A9E0;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-contact__dark-section .page-contact__faq-question {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.page-contact__faq-question:hover {
  background-color: #f0f0f0;
}

.page-contact__dark-section .page-contact__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-contact__faq-heading {
  font-size: 1.2em;
  margin: 0;
}

.page-contact__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-contact__faq-item.active .page-contact__faq-toggle {
  transform: rotate(45deg);
}

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
  font-size: 0.95em;
}

.page-contact__dark-section .page-contact__faq-answer {
  color: #f0f0f0;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-contact__form-section {
  padding: 80px 20px;
}

.page-contact__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-contact__feedback-form {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

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

.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 15px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #26A9E0;
  outline: none;
}

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

.page-contact__location-section {
  padding: 80px 20px;
  text-align: center;
}

.page-contact__location-map {
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-contact__location-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-contact__responsibility-text {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.05em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-contact__final-cta {
  margin-top: 40px;
}

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

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

@media (max-width: 768px) {
  .page-contact {
    padding-top: var(--header-offset, 120px) !important; /* Re-assert for mobile */
  }

  .page-contact__hero-section {
    padding: 40px 15px;
  }

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

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

  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-contact__btn-primary,
  .page-contact__btn-secondary,
  .page-contact__btn-text {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-contact__hero-image-wrapper,
  .page-contact__video-wrapper,
  .page-contact__method-cards,
  .page-contact__features-grid,
  .page-contact__issues-grid,
  .page-contact__faq-list,
  .page-contact__feedback-form,
  .page-contact__location-map {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-contact__hero-image,
  .page-contact__video,
  .page-contact__card-icon,
  .page-contact__feature-icon,
  .page-contact__location-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-contact__section-description {
    font-size: 0.95em;
  }

  .page-contact__methods-section,
  .page-contact__why-us-section,
  .page-contact__issues-section,
  .page-contact__faq-section,
  .page-contact__form-section,
  .page-contact__location-section,
  .page-contact__video-section {
    padding: 40px 0;
  }

  .page-contact__card,
  .page-contact__feature-item,
  .page-contact__issue-card {
    padding: 20px;
  }

  .page-contact__faq-question,
  .page-contact__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-contact__feedback-form {
    padding: 30px 15px;
  }
}

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

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

  .page-contact__card-title,
  .page-contact__feature-title,
  .page-contact__issue-title {
    font-size: 1.2em;
  }

  .page-contact__faq-heading {
    font-size: 1em;
  }
}