.page-contact {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-contact__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5);
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: #F2FFF6;
}

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

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

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

.page-contact__contact-methods-section,
.page-contact__contact-form-section,
.page-contact__faq-section,
.page-contact__location-hours-section {
  padding: 80px 0;
  text-align: center;
}

.page-contact__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
}

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

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

.page-contact__method-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-contact__method-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
  display: block;
}

.page-contact__method-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

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

.page-contact__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-contact__button--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

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

.page-contact__button--secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
}

.page-contact__contact-form {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 40px;
  max-width: 700px;
  margin: 40px auto 0 auto;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-size: 1em;
  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: #2AD16F;
  box-shadow: 0 0 0 3px rgba(42, 209, 111, 0.3);
}

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

.page-contact__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  text-align: left;
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-contact__faq-question::-webkit-details-marker {
  display: none;
}

.page-contact__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-contact__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F; /* Main color from button */
  margin-left: 15px;
}

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

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

.page-contact__cta-block {
  margin-top: 50px;
  padding: 30px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__cta-text {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #F2FFF6; /* Text Main */
}

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

.page-contact__info-block {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border */
}

.page-contact__info-block .page-contact__section-title {
  text-align: left;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-contact__info-block .page-contact__section-description {
  text-align: left;
  margin-bottom: 25px;
  max-width: none;
}

.page-contact__hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-contact__list-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #2E7A4E; /* Divider */
  color: #A7D9B8; /* Text Secondary */
}

.page-contact__list-item:last-child {
  border-bottom: none;
}

.page-contact__hours-time {
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
}

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

.page-contact__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden; /* Hide text, use aria-label */
  text-indent: -9999px;
}

.page-contact__social-link::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: 0;
}

.page-contact__social-link--facebook::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2FFF6"><path d="M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z"/></svg>');
}

.page-contact__social-link--twitter::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2FFF6"><path d="M22.46 6c-.8.35-1.64.58-2.5.68.9-.54 1.58-1.4 1.9-2.4-.84.5-1.78.87-2.77 1.06C18.06 4.3 16.8 3.5 15.4 3.5c-2.47 0-4.47 2-4.47 4.47 0 .35.04.68.1 1.01-3.72-.18-7.02-1.97-9.23-4.68-.38.65-.59 1.4-.59 2.22 0 1.55.78 2.92 1.96 3.72-.72-.02-1.4-.22-2-.54v.05c0 2.17 1.55 3.98 3.6 4.38-.38.1-.78.15-1.18.15-.29 0-.57-.02-.85-.08 1.07 3.56 4.18 6.15 7.85 6.22-1.55 1.22-3.5 1.95-5.63 1.95-.36 0-.7-.02-1.04-.06 2 1.27 4.38 2.02 6.95 2.02 8.35 0 12.92-6.9 12.92-12.92 0-.2 0-.39-.01-.59.88-.63 1.64-1.42 2.25-2.32z"/></svg>');
}

.page-contact__social-link--telegram::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2FFF6"><path d="M18.37 5.75c-.39-.15-.81-.23-1.25-.23-.62 0-1.23.16-1.78.47l-6.52 4.17c-.52.33-.86.9-.86 1.55s.34 1.22.86 1.55l6.52 4.17c.55.31 1.16.47 1.78.47.44 0 .86-.08 1.25-.23.6-.22 1.05-.72 1.2-1.32.14-.59.04-1.2-.28-1.72l-2.4-3.8c-.2-.32-.2-.73 0-1.05l2.4-3.8c.32-.52.42-1.13.28-1.72-.15-.6-.6-1.1-1.2-1.32zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1.63 12.25c-.2.2-.2.52 0 .72l1.63 1.63c.2.2.52.2.72 0l1.63-1.63c.2-.2.2-.52 0-.72l-1.63-1.63c-.2-.2-.52-.2-.72 0l-1.63 1.63z"/></svg>');
}

.page-contact__social-link:hover {
  background-color: #2AD16F;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-contact__hero-content {
    padding-bottom: 40px;
  }
  .page-contact__methods-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-contact__info-block .page-contact__section-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding-bottom: 40px;
  }
  .page-contact__main-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-description {
    font-size: 0.95em;
  }
  .page-contact__contact-methods-section,
  .page-contact__contact-form-section,
  .page-contact__faq-section,
  .page-contact__location-hours-section {
    padding: 50px 0;
  }
  .page-contact__methods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-contact__contact-form {
    padding: 30px;
  }
  .page-contact__faq-question {
    font-size: 1.05em;
    padding: 15px 20px;
  }
  .page-contact__faq-answer {
    padding: 0 20px 15px 20px;
  }
  .page-contact__cta-text {
    font-size: 1.1em;
  }
  .page-contact__grid-two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-contact__social-links {
    justify-content: center;
  }

  /* Image responsive adaptation */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Container responsive adaptation for images/videos/buttons */
  .page-contact__section,
  .page-contact__container,
  .page-contact__hero-section,
  .page-contact__contact-methods-section,
  .page-contact__contact-form-section,
  .page-contact__faq-section,
  .page-contact__location-hours-section,
  .page-contact__method-card,
  .page-contact__contact-form,
  .page-contact__faq-item,
  .page-contact__cta-block,
  .page-contact__info-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }

  /* Button responsive adaptation */
  .page-contact__button,
  .page-contact__button--primary,
  .page-contact__button--secondary,
  .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 !important;
    padding-right: 15px !important;
  }

  .page-contact__social-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}