.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-top: 10px; /* Small top padding for first content block */
}

.page-contact__hero-section {
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  padding-top: var(--header-offset, 120px); /* Desktop: for fixed header */
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  min-width: 200px;
  min-height: 200px;
}

.page-contact__hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-contact__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.page-contact__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-contact__btn-secondary {
  display: inline-block;
  background: #111111; /* Card B G */
  color: #F2C14E; /* Main color */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid #F2C14E; /* Main color as border */
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__btn-secondary:hover {
  background: #F2C14E;
  color: #111111; /* Card B G */
  border-color: #FFD36B; /* Auxiliary color */
}

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

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

.page-contact__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF6D6; /* Text Main */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__method-card {
  background: #111111; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF6D6;
}

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

.page-contact__method-title {
  font-size: 1.8em;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__method-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-contact__email-link {
  color: #FFD36B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__email-link:hover {
  color: #F2C14E;
}

.page-contact__faq-section {
  padding: 60px 0;
}

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

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

.page-contact__faq-item {
  background: #111111; /* Card B G */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #3A2A12; /* Border */
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #1a1a1a;
  color: #FFD36B; /* Auxiliary color */
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease;
}

.page-contact__faq-question:hover {
  background: #2a2a2a;
}

.page-contact__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1em;
}

.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: #FFF6D6; /* Text Main */
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px 25px;
}

.page-contact__commitment-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

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

.page-contact__commitment-item {
  background: #111111; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  color: #FFF6D6;
}

.page-contact__commitment-heading {
  font-size: 1.8em;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__commitment-text {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-contact__btn-link {
  display: inline-block;
  color: #FFD36B; /* Auxiliary color */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__btn-link:hover {
  color: #F2C14E;
}

.page-contact__social-media-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

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

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

.page-contact__social-btn {
  display: inline-block;
  background: #111111; /* Card B G */
  color: #FFD36B; /* Auxiliary color */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid #3A2A12; /* Border */
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__social-btn:hover {
  background: #F2C14E;
  color: #111111;
  border-color: #FFD36B;
}

.page-contact__social-cta {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #FFF6D6;
}

.page-contact__message-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #111111; /* Card B G */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border */
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
  font-size: 1em;
  box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #777;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  outline: none;
  border-color: #FFD36B; /* Glow */
  box-shadow: 0 0 0 3px rgba(255, 211, 107, 0.3);
}

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

.page-contact__submit-button {
  width: 100%;
  padding: 15px;
  font-size: 1.2em;
  margin-top: 20px;
}

.page-contact__form-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 0.95em;
  color: #FFF6D6;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: clamp(1.6em, 4vw, 2.5em);
  }
  .page-contact__section-description {
    font-size: 0.95em;
  }
}

@media (max-width: 768px) {
  .page-contact {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-contact__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile: for fixed header */
    padding-bottom: 40px;
  }

  .page-contact__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-contact__hero-description {
    font-size: 0.95em;
  }

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

  .page-contact__methods-grid,
  .page-contact__commitment-points {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-contact__method-card,
  .page-contact__commitment-item,
  .page-contact__contact-form {
    padding: 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-contact__method-icon,
  .page-contact__faq-image,
  .page-contact__social-image,
  .page-contact__message-image,
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-contact__btn-primary,
  .page-contact__btn-secondary,
  .page-contact__social-btn,
  .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__social-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .page-contact__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-contact__faq-answer {
    padding: 0 20px;
  }

  .page-contact__faq-item.active .page-contact__faq-answer {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-section {
    padding-bottom: 30px;
  }

  .page-contact__hero-title {
    font-size: clamp(1.6em, 7vw, 2.2em);
  }

  .page-contact__hero-description {
    font-size: 0.9em;
  }

  .page-contact__btn-primary {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-contact__section-title {
    font-size: clamp(1.4em, 5vw, 2em);
  }

  .page-contact__section-description {
    font-size: 0.9em;
  }

  .page-contact__method-card,
  .page-contact__commitment-item,
  .page-contact__contact-form {
    padding: 20px;
  }

  .page-contact__method-title,
  .page-contact__commitment-heading {
    font-size: 1.5em;
  }

  .page-contact__method-text,
  .page-contact__commitment-text {
    font-size: 0.9em;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 10px 12px;
  }

  .page-contact__submit-button {
    font-size: 1.1em;
    padding: 12px;
  }
}