.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Default body background */
}

/* Fixed Header Offset for main content */
.page-contact__hero-section {
  padding-top: var(--header-offset, 120px);
}

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

.page-contact__hero-section {
  position: relative;
  background-color: #017439; /* Brand color background */
  color: #ffffff;
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-contact__hero-description a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-contact__hero-description a:hover {
  color: #FFFFFF;
}

.page-contact__hero-cta {
  margin-top: 30px;
}

.page-contact__btn-primary {
  display: inline-block;
  background-color: #C30808;
  color: #FFFF00;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.page-contact__btn-primary:hover {
  background-color: #A00707;
  color: #FFFFFF;
  border-color: #FFFF00;
}

.page-contact__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #017439;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #017439;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

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

.page-contact__dark-bg .page-contact__section-title {
  color: #ffffff;
}

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

.page-contact__dark-bg .page-contact__section-description {
  color: #f0f0f0;
}

.page-contact__section-description a {
  color: #017439;
  text-decoration: underline;
}

.page-contact__dark-bg .page-contact__section-description a {
  color: #FFFF00;
}

.page-contact__section-description a:hover {
  color: #005f2c;
}

.page-contact__dark-bg .page-contact__section-description a:hover {
  color: #ffffff;
}

/* Form Section */
.page-contact__form-section {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

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

.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;
  transition: border-color 0.3s ease;
}

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

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

.page-contact__form-submit-btn {
  width: auto;
  display: block;
  margin: 30px auto 0 auto;
}

.page-contact__form-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Direct Contact Methods Section */
.page-contact__methods-section {
  padding: 80px 0;
  background-color: #017439;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.page-contact__method-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-contact__method-card a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-contact__method-card a:hover {
  color: #ffffff;
}

.page-contact__method-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-contact__method-text {
  font-size: 1.05em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-contact__method-info {
  font-size: 1.1em;
  font-weight: bold;
  color: #FFFF00;
  margin-top: 15px;
}

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

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

.page-contact__methods-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.page-contact__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #FFFF00;
    color: #017439;
    border-radius: 50%;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__social-icon:hover {
    background-color: #ffffff;
    color: #017439;
}


/* FAQ Section */
.page-contact__faq-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

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

.page-contact__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-contact__faq-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

.page-contact__faq-title {
  margin: 0;
  color: #017439;
}