.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5.9375rem 2rem;
  margin-bottom: 5.875rem;
}

.contact-h2 {
  text-align: justify;
  margin-bottom: 2.5rem;
  color: var(--primary-dark-color);
  .h2-logo {
    display: block;
    margin-bottom: 0.625rem;
  }
}

.contact-button-group {
  display: flex;
  gap: 1.25rem;
}

.contact-image {
  width: 30%;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact {
    flex-direction: column;
    gap: 5rem;
  }
  .contact-image {
    width: 100%;
    object-fit: contain;
  }
}
@media (max-width: 480px) {
  .contact-button-group {
    flex-direction: column;
  }
}
