.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #000000; /* Ensuring main content area matches body background */
}

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

.page-contact__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: var(--header-offset, 120px) 0 60px; /* Apply header offset */
  text-align: center;
  overflow: hidden;
  background-color: #0A2240; /* Main brand color for hero background */
}

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

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

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

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

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

.page-contact__btn-primary,
.page-contact__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-contact__btn-primary {
  background-color: #E6B34B;
  color: #0A2240;
  border: 2px solid #E6B34B;
}

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

.page-contact__btn-secondary {
  background-color: transparent;
  color: #E6B34B;
  border: 2px solid #E6B34B;
}

.page-contact__btn-secondary:hover {
  background-color: #E6B34B;
  color: #0A2240;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #E6B34B;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

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

.page-contact__why-contact-section,
.page-contact__faq-section,
.page-contact__office-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background for sections */
  color: #ffffff;
}

.page-contact__channels-section,
.page-contact__feedback-section {
  padding: 80px 0;
  background-color: #0A2240; /* Brand dark blue background */
  color: #ffffff;
}

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

.page-contact__feature-item,
.page-contact__channel-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-contact__feature-item:hover,
.page-contact__channel-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-contact__feature-icon,
.page-contact__channel-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #E6B34B;
}

.page-contact__feature-title,
.page-contact__channel-title {
  font-size: 1.5em;
  color: #E6B34B;
  margin-bottom: 15px;
}

.page-contact__feature-description,
.page-contact__channel-description {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 20px;
}

.page-contact__email-address,
.page-contact__phone-number {
  font-size: 1.1em;
  margin-top: 20px;
}

.page-contact__email-link,
.page-contact__phone-link {
  color: #E6B34B;
  text-decoration: none;
}

.page-contact__email-link:hover,
.page-contact__phone-link:hover {
  text-decoration: underline;
}

.page-contact__social-media-note {
  text-align: center;
  margin-top: 50px;
  font-size: 0.95em;
  color: #aaa;
}

.page-contact__faq-grid {
  margin-top: 40px;
}

.page-contact__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #E6B34B;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

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

.page-contact__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 25px;
  text-align: center;
  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: #f0f0f0;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px 25px;
}

.page-contact__faq-answer p {
  margin-bottom: 10px;
}

.page-contact__faq-answer a {
  color: #E6B34B;
  text-decoration: none;
}

.page-contact__faq-answer a:hover {
  text-decoration: underline;
}

.page-contact__cta-faq {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-contact__cta-faq p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-contact__feedback-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-contact__feedback-text {
  flex: 1;
}

.page-contact__feedback-subtitle {
  font-size: 1.8em;
  color: #E6B34B;
  margin-bottom: 15px;
  margin-top: 30px;
}

.page-contact__feedback-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-contact__office-details {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-contact__office-address {
  margin-bottom: 10px;
}

.page-contact__office-image {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
  border-radius: 10px;
  height: auto;
  object-fit: cover;
}

.page-contact__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.8em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: 400px;
  }
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__btn-primary,
  .page-contact__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-contact__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-contact__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  
  .page-contact__feature-grid,
  .page-contact__channel-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-contact__feedback-content {
    flex-direction: column;
  }
  .page-contact__feedback-image {
    max-width: 100%;
  }

  .page-contact__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Image responsive */
  .page-contact img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact__feature-icon,
  .page-contact__channel-icon {
    width: 80px;
    height: 80px;
  }
  .page-contact__office-image {
    max-width: 100%;
  }
  
  /* FAQ specific adjustments */
  .page-contact__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-contact__faq-answer {
    padding: 0 20px;
  }
  .page-contact__faq-item.active .page-contact__faq-answer {
    padding: 10px 20px 20px;
  }
  
  .page-contact__feedback-subtitle {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__feature-title,
  .page-contact__channel-title {
    font-size: 1.3em;
  }
  .page-contact__faq-question {
    font-size: 1em;
  }
}