.location-container {
    width: 70%;
    display: flex;
    flex-direction: column; /* Vertical stacking of the main header */
    padding: 20px;
    border: 1px solid #ddd;
    margin: 1rem auto;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow: hidden;
}

.content-container {
    display: flex; /* Flexbox for side-by-side layout */
    justify-content: space-between; /* Push sections to the sides */
    align-items: stretch; /* Align items to the top */
    flex-wrap: nowrap; /* Prevent wrapping unless on smaller screens */
}

.map-container {
    flex: 1; /* Both containers take up equal space */
    max-width: 60%; /* Prevent containers from becoming too wide */
    min-width: 300px; /* Prevent shrinking below this width */
    padding: 20px;
    border: 1px solid grey;
    border-right: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-bottom-left-radius: 8px;
    box-sizing: border-box;
}

.address-container {
    flex: 1; /* Both containers take up equal space */
    max-width: 40%; /* Prevent containers from becoming too wide */
    min-width: 300px; /* Prevent shrinking below this width */
    padding: 20px;
    border: 1px solid grey;
    border-left: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-bottom-right-radius: 8px;
    box-sizing: border-box;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.address-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: black;
}

.address-container a {
    color: #428bca;
    text-decoration: none;
    font-weight: bold;
}

.address-container a:hover {
    text-decoration: underline;
    color: #3276b1;
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column; /* Stack sections vertically on smaller screens */
    }

    .map-container,
    .address-container {
        max-width: 100%; /* Expand to full width */
    }
}
