.location-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 300px; 
}

.map-container,
.location-text {
  flex: 1 1 50%;
  box-sizing: border-box;
}

.map-container {
  display: flex;
  flex-direction: column;
}

.map-container iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 100%;
}

.location-text {
  padding: 20px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.btn-secondary{
   font-family: Serifa-Bold, serif;
   background: #C6361B; /* light red background */
   color: white;
   text-decoration: none;
}
.rego-button {
   display: inline-block;
   margin-top: 8px;
   padding: 8px 20px;
   font-size: 14px;
   font-family: Serifa-Bold, serif;
   background: #C6361B; /* light red background */
   color: white;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: background 0.2s;
   text-decoration: none;
}
.btn-secondary:hover {
   background: #5D1425;
}
.rego-button:hover {
   background: #d7D3D1;
}