.page-contact {
  color: #ffffff; /* Main text color for dark body background */
  background-color: transparent;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-contact__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

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

.page-contact__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-contact__hero-content {
  max-width: 800px;
  color: #ffffff;
  padding: 20px;
}

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

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

.page-contact__btn-primary {
  display: inline-block;
  background-color: #017439;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__btn-primary:hover {
  background-color: #005f2e;
  transform: translateY(-2px);
}

.page-contact__intro-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-contact__intro-heading {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
}

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

.page-contact__intro-text a {
  color: #017439;
  text-decoration: none;
}

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

.page-contact__info-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.page-contact__info-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-contact__info-card {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-contact__info-card-title {
  font-size: 2em;
  margin-bottom: 25px;
  color: #017439;
}

.page-contact__info-card p,
.page-contact__info-card ul {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-contact__info-card strong {
  color: #ffffff;
}

.page-contact__info-card ul {
  list-style: none;
  padding-left: 0;
}

.page-contact__info-card li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-contact__info-card li::before {
  content: '▶';
  color: #017439;
  position: absolute;
  left: 0;
  top: 0;
}

.page-contact__info-card a {
  color: #017439;
  text-decoration: none;
}

.page-contact__info-card a:hover {
  text-decoration: underline;
}

.page-contact__info-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-contact__form-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-contact__form-heading {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

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

.page-contact__form-description a {
  color: #017439;
  text-decoration: none;
}

.page-contact__form-description a:hover {
  text-decoration: underline;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #017439;
  outline: none;
  box-shadow: 0 0 0 3px rgba(1, 116, 57, 0.3);
}

.page-contact__form button[type="submit"] {
  width: 100%;
  padding: 15px;
  font-size: 1.1em;
}

.page-contact__live-chat-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.page-contact__live-chat-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-contact__live-chat-text {
  flex: 1;
  color: #ffffff;
}

.page-contact__live-chat-heading {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-contact__live-chat-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-contact__live-chat-description a {
  color: #017439;
  text-decoration: none;
}

.page-contact__live-chat-description a:hover {
  text-decoration: underline;
}

.page-contact__btn-chat {
  padding: 15px 40px;
}

.page-contact__live-chat-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-contact__live-chat-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-contact__faq-heading {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-contact__faq-intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-contact__faq-intro-text a {
  color: #017439;
  text-decoration: none;
}

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

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

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

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(1, 116, 57, 0.7);
  transition: background-color 0.3s ease;
}

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

.page-contact__faq-question span {
  color: #ffffff;
}

.page-contact__faq-question a {
  color: #ffffff;
  text-decoration: none;
}

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

.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: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.02);
}

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

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

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

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

.page-contact__map-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.page-contact__map-heading {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

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

.page-contact__map-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.page-contact__map-address {
  font-size: 1.1em;
  color: #ffffff;
  margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.8em;
  }
  .page-contact__hero-description {
    font-size: 1.2em;
  }
  .page-contact__intro-heading,
  .page-contact__info-card-title,
  .page-contact__form-heading,
  .page-contact__live-chat-heading,
  .page-contact__faq-heading,
  .page-contact__map-heading {
    font-size: 2.2em;
  }
  .page-contact__info-grid,
  .page-contact__live-chat-content {
    flex-direction: column;
  }
  .page-contact__live-chat-text,
  .page-contact__live-chat-image-wrapper {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__intro-section,
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__live-chat-section,
  .page-contact__faq-section,
  .page-contact__map-section {
    padding: 40px 0;
  }
  .page-contact__intro-heading,
  .page-contact__info-card-title,
  .page-contact__form-heading,
  .page-contact__live-chat-heading,
  .page-contact__faq-heading,
  .page-contact__map-heading {
    font-size: 1.8em;
  }
  .page-contact__intro-text,
  .page-contact__form-description,
  .page-contact__live-chat-description,
  .page-contact__faq-intro-text,
  .page-contact__map-description,
  .page-contact__map-address,
  .page-contact__info-card p,
  .page-contact__info-card li,
  .page-contact__form-label,
  .page-contact__form-input,
  .page-contact__form-textarea {
    font-size: 15px;
  }
  .page-contact__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-contact__faq-answer {
    padding: 15px 20px;
  }
  .page-contact__form {
    padding: 30px;
  }

  /* Mobile image responsiveness */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact__info-image-wrapper,
  .page-contact__live-chat-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  /* Mobile button responsiveness */
  .page-contact__btn-primary,
  .page-contact a[class*="button"],
  .page-contact a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-contact__hero-content .page-contact__btn-primary {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .page-contact__cta-buttons,
  .page-contact__button-group,
  .page-contact__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-contact__cta-buttons {
    display: flex;
    flex-direction: column;
  }
  
  /* Mobile container padding */
  .page-contact__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__hero-description {
    font-size: 0.9em;
  }
  .page-contact__intro-heading,
  .page-contact__info-card-title,
  .page-contact__form-heading,
  .page-contact__live-chat-heading,
  .page-contact__faq-heading,
  .page-contact__map-heading {
    font-size: 1.5em;
  }
  .page-contact__faq-question {
    font-size: 1em;
  }
}