.contact-section {
  padding: 48px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text-1);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 1rem;
  color: var(--color-text-2);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-form-wrapper {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.contact-form-box {
  padding: 40px;
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-light);
}

.contact-form-box h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-1);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-section {
  margin-bottom: 64px;
}

.map-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-section {
  padding: 48px 0;
  background-color: var(--color-bg-light-gray);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text-1);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1rem;
  color: var(--color-text-2);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .contact-info h2 {
    font-size: 1.5rem;
  }

  .contact-form-box {
    padding: 24px;
  }

  .contact-form-box h2 {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
}
