/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

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

.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--card-bg);
  overflow: hidden;
}

.page-contact__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-contact__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.2;
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: var(--text-main);
}

.page-contact__hero-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-main);
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-contact__form-section {
  padding: 80px 0;
  background-color: var(--background);
  color: var(--text-main);
  text-align: center;
}

.page-contact__form-section .page-contact__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-contact__form-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-contact__form-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  color: var(--text-secondary);
}

.page-contact__form {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  border: 1px solid var(--border);
}

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

.page-contact__label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--text-main);
}

.page-contact__input,
.page-contact__textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: #0A2016; /* Slightly lighter than background for input fields */
  color: var(--text-main);
  font-size: 1em;
  box-sizing: border-box;
}

.page-contact__input::placeholder,
.page-contact__textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.page-contact__textarea {
  resize: vertical;
}

.page-contact__submit-button {
  display: inline-block;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__submit-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--glow);
}

.page-contact__form-illustration {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.page-contact__info-section {
  padding: 80px 0;
  background-color: var(--deep-green);
  color: var(--text-main);
  text-align: center;
}

.page-contact__info-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-contact__info-intro {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
}

.page-contact__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-contact__info-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  background-color: var(--glow);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.page-contact__icon--email {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

.page-contact__icon--phone {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.47.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.47.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
}

.page-contact__icon--address {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2c3.86 0 7 3.14 7 7 0 5.25-7 13-7 13S5 14.25 5 9c0-3.86 3.14-7 7-7zm0 9.5c1.38 0 2.5-1.12 2.5-2.5S13.38 6.5 12 6.5 9.5 7.62 9.5 9s1.12 2.5 2.5 2.5z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2c3.86 0 7 3.14 7 7 0 5.25-7 13-7 13S5 14.25 5 9c0-3.86 3.14-7 7-7zm0 9.5c1.38 0 2.5-1.12 2.5-2.5S13.38 6.5 12 6.5 9.5 7.62 9.5 9s1.12 2.5 2.5 2.5z"/></svg>');
}

.page-contact__icon--chat {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z"/></svg>');
}

.page-contact__info-subtitle {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--text-main);
}

.page-contact__social-links {
  margin-top: 40px;
}

.page-contact__social-title {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-contact__social-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-contact__social-icon {
  display: block;
  width: 40px;
  height: 40px;
  background-color: var(--glow);
  border-radius: 50%;
  transition: transform 0.3s ease;
  -webkit-mask-size: 60%;
  mask-size: 60%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

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

.page-contact__social-icon--facebook {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 2C6.477 2 2 6.477 2 12c0 5.016 3.655 9.183 8.438 9.878V14.89h-2.54V12h2.54V9.797c0-2.515 1.537-3.875 3.752-3.875 1.076 0 2.004.192 2.272.278v2.477h-1.47c-1.215 0-1.45.578-1.45 1.423V12h2.77l-.443 2.89h-2.327v6.988C18.345 21.183 22 17.016 22 12c0-5.523-4.477-10-10-10z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 2C6.477 2 2 6.477 2 12c0 5.016 3.655 9.183 8.438 9.878V14.89h-2.54V12h2.54V9.797c0-2.515 1.537-3.875 3.752-3.875 1.076 0 2.004.192 2.272.278v2.477h-1.47c-1.215 0-1.45.578-1.45 1.423V12h2.77l-.443 2.89h-2.327v6.988C18.345 21.183 22 17.016 22 12c0-5.523-4.477-10-10-10z"/></svg>');
}

.page-contact__social-icon--twitter {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M22.46 6c-.8.35-1.65.59-2.54.69.9-.54 1.5-1.4 1.8-2.4-.83.5-1.75.85-2.73 1.04C18.3 4.28 17.15 4 15.96 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.07 5.5 7.5 3.6 4.96c-.36.62-.56 1.34-.56 2.12 0 1.48.75 2.78 1.88 3.55-.7-.02-1.35-.2-1.92-.5V11c0 2.08 1.48 3.82 3.45 4.22-.36.1-.73.15-1.1.15-.27 0-.53-.02-.79-.08.55 1.7 2.14 2.94 4.02 2.97-1.47 1.15-3.32 1.84-5.32 1.84-.35 0-.7-.02-1.05-.06 1.9 1.22 4.14 1.93 6.56 1.93 7.86 0 12.15-6.53 12.15-12.15 0-.18 0-.35-.01-.53.83-.6 1.55-1.35 2.12-2.2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M22.46 6c-.8.35-1.65.59-2.54.69.9-.54 1.5-1.4 1.8-2.4-.83.5-1.75.85-2.73 1.04C18.3 4.28 17.15 4 15.96 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.07 5.5 7.5 3.6 4.96c-.36.62-.56 1.34-.56 2.12 0 1.48.75 2.78 1.88 3.55-.7-.02-1.35-.2-1.92-.5V11c0 2.08 1.48 3.82 3.45 4.22-.36.1-.73.15-1.1.15-.27 0-.53-.02-.79-.08.55 1.7 2.14 2.94 4.02 2.97-1.47 1.15-3.32 1.84-5.32 1.84-.35 0-.7-.02-1.05-.06 1.9 1.22 4.14 1.93 6.56 1.93 7.86 0 12.15-6.53 12.15-12.15 0-.18 0-.35-.01-.53.83-.6 1.55-1.35 2.12-2.2z"/></svg>');
}

.page-contact__social-icon--telegram {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.71 8.87l-6.42 2.61c-.56.23-1.08-.05-1.08-.66V9.26c0-.61.52-.89 1.08-.66l6.42 2.61zm-1.22 2.95l-3.35 1.46c-.56.24-1.08-.04-1.08-.65v-3.48c0-.6.52-.88 1.08-.65l3.35 1.46zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.71-7.13l-6.42-2.61c-.56-.23-1.08.05-1.08.66v3.91c0 .61.52.89 1.08.66l6.42-2.61z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.71 8.87l-6.42 2.61c-.56.23-1.08-.05-1.08-.66V9.26c0-.61.52-.89 1.08-.66l6.42 2.61zm-1.22 2.95l-3.35 1.46c-.56.24-1.08-.04-1.08-.65v-3.48c0-.6.52-.88 1.08-.65l3.35 1.46zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.71-7.13l-6.42-2.61c-.56-.23-1.08.05-1.08.66v3.91c0 .61.52.89 1.08.66l6.42-2.61z"/></svg>');
}

.page-contact__info-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-top: 50px;
}

.page-contact__why-contact-section {
  padding: 80px 0;
  background-color: var(--background);
  color: var(--text-main);
  text-align: center;
}

.page-contact__why-contact-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-contact__why-contact-intro {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
}

.page-contact__why-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-contact__why-contact-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__why-contact-subtitle {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: var(--gold);
}

.page-contact__faq-section {
  padding: 80px 0;
  background-color: var(--deep-green);
  color: var(--text-main);
  text-align: center;
}

.page-contact__faq-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-contact__faq-intro {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
}

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

.page-contact__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-contact__faq-item summary {
  list-style: none;
}

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

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  font-size: 1.25em;
  font-weight: bold;
  color: var(--text-main);
  background-color: var(--card-bg);
  transition: background-color 0.3s ease;
}

.page-contact__faq-question:hover {
  background-color: #1a3528; /* Slightly lighter hover for card-bg */
}

.page-contact__faq-qtext {
  flex-grow: 1;
  padding-right: 15px;
}

.page-contact__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow);
}

.page-contact__faq-answer {
  padding: 0 30px 20px 30px;
  color: var(--text-secondary);
  font-size: 1em;
  line-height: 1.7;
}

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

.page-contact__faq-illustration {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-top: 50px;
}

.page-contact__commitment-section {
  padding: 80px 0;
  background-color: var(--background);
  color: var(--text-main);
  text-align: center;
}

.page-contact__commitment-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-contact__commitment-intro {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
}

.page-contact__commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-contact__commitment-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__commitment-subtitle {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: var(--gold);
}

.page-contact__commitment-image {
  max-width: 1000px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-top: 50px;
}

.page-contact__cta-section {
  padding: 80px 0;
  background-color: var(--deep-green);
  color: var(--text-main);
  text-align: center;
}

.page-contact__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-contact__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
}

.page-contact__cta-button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-contact__btn-primary,
.page-contact__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-contact__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--glow);
}

.page-contact__btn-secondary {
  background: var(--card-bg);
  color: var(--text-main);
  border: 2px solid var(--border);
}

.page-contact__btn-secondary:hover {
  background-color: #1a3528; /* Slightly lighter hover for card-bg */
  border-color: var(--glow);
  box-shadow: 0 0 10px var(--glow);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-contact__form-title,
  .page-contact__info-title,
  .page-contact__why-contact-title,
  .page-contact__faq-title,
  .page-contact__commitment-title,
  .page-contact__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-contact__container {
    padding: 15px;
  }
  
  .page-contact__hero-section,
  .page-contact__form-section,
  .page-contact__info-section,
  .page-contact__why-contact-section,
  .page-contact__faq-section,
  .page-contact__commitment-section,
  .page-contact__cta-section {
    padding: 40px 0;
  }

  .page-contact__hero-content {
    padding: 0 15px;
  }

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

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

  .page-contact__form-intro,
  .page-contact__info-intro,
  .page-contact__why-contact-intro,
  .page-contact__faq-intro,
  .page-contact__commitment-intro,
  .page-contact__cta-description {
    font-size: 0.95em;
    padding: 0 15px;
  }

  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__why-contact-list,
  .page-contact__commitment-list {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .page-contact__faq-list {
    padding: 0 15px;
  }

  .page-contact__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

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

  .page-contact__cta-button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  /* Mobile responsive for images */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-contact__section,
  .page-contact__card,
  .page-contact__container,
  .page-contact__form,
  .page-contact__info-item,
  .page-contact__why-contact-item,
  .page-contact__faq-item,
  .page-contact__commitment-item,
  .page-contact__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-contact__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Mobile responsive for buttons */
  .page-contact__cta-button,
  .page-contact__btn-primary,
  .page-contact__btn-secondary,
  .page-contact__submit-button,
  .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__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-button-group {
    flex-direction: column;
  }
}

/* Custom colors */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-contact {
  color: var(--text-main);
  background-color: var(--background);
}

.page-contact__dark-section {
  background-color: var(--deep-green);
  color: var(--text-main);
}

.page-contact__form,
.page-contact__info-item,
.page-contact__why-contact-item,
.page-contact__faq-item,
.page-contact__commitment-item {
  background-color: var(--card-bg);
  border-color: var(--border);
}

.page-contact__label,
.page-contact__hero-title,
.page-contact__form-title,
.page-contact__info-title,
.page-contact__info-subtitle,
.page-contact__social-title,
.page-contact__why-contact-title,
.page-contact__faq-title,
.page-contact__faq-question,
.page-contact__commitment-title,
.page-contact__commitment-subtitle,
.page-contact__cta-title {
  color: var(--text-main);
}

.page-contact__hero-description,
.page-contact__form-intro,
.page-contact__text,
.page-contact__info-intro,
.page-contact__why-contact-intro,
.page-contact__faq-intro,
.page-contact__faq-answer,
.page-contact__commitment-intro,
.page-contact__cta-description {
  color: var(--text-secondary);
}

.page-contact__why-contact-subtitle,
.page-contact__commitment-subtitle {
  color: var(--gold);
}

.page-contact__submit-button,
.page-contact__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
}

.page-contact__btn-secondary {
  background: var(--card-bg);
  color: var(--text-main);
  border-color: var(--border);
}

.page-contact__faq-toggle,
.page-contact__icon {
  background-color: var(--glow);
}

.page-contact__divider {
  background-color: var(--divider);
}