﻿.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
}

.contact-image {
  flex: 1 1 300px;
  max-width: 400px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.contact-form-box {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
  padding: 20px;
  height: 100%;            /* or set a fixed height like 400px */
  background-color: #f9f9f9;
}

.contact-form {
  width: 100%;
  justify-content: center;
  flex-direction: row;
  display:flex;
  max-width: 500px;         /* optional: keeps form tidy */
}
