.page-contact {
  font-family: Arial, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-contact__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding for header offset, then generous padding */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width of the image */
  margin-bottom: 30px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-contact__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  position: relative; /* Ensure it's not absolutely positioned over the image */
}

.page-contact__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-contact__hero-description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-contact__cta-button,
.page-contact__form-submit-button,
.page-contact__method-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%; /* Responsive button */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__cta-button:hover,
.page-contact__form-submit-button:hover,
.page-contact__method-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-contact__section-description {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-contact__contact-form-section {
  padding: 60px 20px;
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1200px;
}

.page-contact__form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.page-contact__form {
  flex: 1 1 500px;
  min-width: 300px;
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 6px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-size: 1rem;
  box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #A7D9B8; /* Text Secondary */
  opacity: 0.7;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  outline: none;
  border-color: #57E38D; /* Glow */
  box-shadow: 0 0 0 3px rgba(87, 227, 141, 0.3);
}

.page-contact__form-image-container {
  flex: 1 1 400px;
  min-width: 250px;
  text-align: center;
}

.page-contact__form-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Minimum size */
  min-height: 200px; /* Minimum size */
}

.page-contact__other-methods-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 40px auto;
}

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

.page-contact__method-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-contact__method-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-contact__method-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum size */
  min-height: 200px; /* Minimum size */
}

.page-contact__method-text {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__email-link, .page-contact__phone-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
}

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

.page-contact__office-section {
  padding: 60px 20px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1200px;
}

.page-contact__office-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.page-contact__office-info {
  flex: 1 1 500px;
  min-width: 300px;
  color: #F2FFF6; /* Text Main */
}

.page-contact__office-text {
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-contact__address-line {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-contact__office-image-container {
  flex: 1 1 400px;
  min-width: 250px;
  text-align: center;
}

.page-contact__office-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Minimum size */
  min-height: 200px; /* Minimum size */
}

.page-contact__social-media-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
}

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

.page-contact__social-icon-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.page-contact__social-icon-link:hover {
  transform: translateY(-5px) scale(1.1);
}

.page-contact__social-icon-link img {
  width: auto; /* Allow auto width to scale with height */
  height: 200px; /* Set height to minimum 200px */
  min-width: 200px;
  min-height: 200px;
  object-fit: contain; /* Ensure icon is fully visible */
}

.page-contact__faq-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 40px auto;
}

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

.page-contact__faq-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.15rem;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-contact__faq-question:hover {
  background-color: #11A84E; /* Main color */
}

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

.page-contact__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-contact__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.7;
}

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

.page-contact__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Ensure all images within .page-contact have min 200px display size */
.page-contact img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

/* Specific override for social icons to meet the 200px minimum while maintaining aspect ratio */
.page-contact__social-icon-link img {
  width: auto; /* Allow auto width to scale with height */
  height: 200px; /* Set height to minimum 200px */
  min-width: 200px;
  min-height: 200px;
  object-fit: contain; /* Ensure icon is fully visible */
}

/* Contrast fixes for links in dark background */
.page-contact a {
  color: #57E38D; /* Glow color for links */
}

.page-contact a:hover {
  color: #F2C14E; /* Gold for hover */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-contact__hero-content {
    padding: 0 15px;
  }
  .page-contact__form-wrapper, .page-contact__office-content {
    flex-direction: column;
  }
  .page-contact__form-image-container, .page-contact__office-image-container {
    order: -1; /* Image above form/info on smaller screens */
  }
  .page-contact__form-image, .page-contact__office-image {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 10px 15px 40px; /* Adjusted padding */
  }
  .page-contact__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .page-contact__hero-description {
    font-size: 1rem;
  }
  .page-contact__cta-button, .page-contact__form-submit-button, .page-contact__method-button {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1rem;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-contact__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }
  .page-contact__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-contact__contact-form-section, .page-contact__other-methods-section, .page-contact__office-section, .page-contact__social-media-section, .page-contact__faq-section {
    padding: 30px 15px;
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-contact__form-wrapper, .page-contact__office-content {
    gap: 20px;
  }
  .page-contact__form-image-container, .page-contact__office-image-container {
    max-width: 100%;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }
  .page-contact__form-image, .page-contact__office-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact__method-card {
    padding: 20px;
  }
  .page-contact__method-image {
    max-height: 200px;
  }
  .page-contact__social-links {
    flex-wrap: wrap;
    gap: 15px;
  }
  /* Social icons minimum size enforcement for mobile */
  .page-contact__social-icon-link img {
    width: auto !important; 
    height: 200px !important; 
    min-width: 200px !important; 
    min-height: 200px !important;
    object-fit: contain !important;
  }
  .page-contact__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-contact__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
  /* General image minimum size enforcement for mobile */
  .page-contact img {
    min-width: 200px !important;
    min-height: 200px !important;
  }
  /* Content area image CSS size lower bound enforcement */
  .page-contact__contact-form-section img, 
  .page-contact__other-methods-section img, 
  .page-contact__office-section img {
    width: 100% !important; 
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
}