.container {
  margin-top: 16px;
  width: 100%;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  background-image: "";
}

.headerContent {
  padding: 10px;
  border-radius: 8px;
  color: #8a9b8b;
  display: flex;
}

.section {
  width: 100%;
  display: flex;
  flex-grow: 1;
  padding: 40px;
}

.leftContainer {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.address {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  gap: 4px;
  justify-content: flex-start;
}

.addressline {
  display: flex;
  gap: 1rem;
}

.address p {
  margin: 0px;
}

.map {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
  }
}
