.faq-contact-section {
  background: #ffffff;
  padding: 6rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-heading {
  font-size: 3.2rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact-text {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 4rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 90rem;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  border-radius: 2.5rem;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 20rem;
  justify-content: center;
}

.contact-btn.primary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.contact-btn.primary:hover {
  background: #222;
  border-color: #222;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.15);
}

.contact-btn.secondary {
  background: transparent;
  color: #111;
  border-color: #111;
}

.contact-btn.secondary:hover {
  background: #111;
  color: #fff;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.15);
}

.contact-btn i {
  font-size: 1.8rem;
  color: inherit;
}

@media (max-width: 768px) {
  .faq-contact-section {
    padding: 4rem 1.5rem;
  }
  
  .contact-heading {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-text {
    font-size: 1.7rem;
    margin-bottom: 3rem;
  }
  
  .contact-options {
    gap: 2rem;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-btn {
    width: 100%;
    max-width: 30rem;
    padding: 1.3rem 2.5rem;
    font-size: 1.6rem;
  }
}

@media (max-width: 468px) {
  .faq-contact-section {
    padding: 3rem 1rem;
  }
  
  .contact-heading {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  
  .contact-text {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  
  .contact-options {
    gap: 1.5rem;
  }
  
  .contact-btn {
    padding: 1.2rem 2rem;
    font-size: 1.6rem;
    min-width: 18rem;
  }
  
  .contact-btn i {
    font-size: 1.6rem;
  }
}
