.map-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start; /* align items at start */
    align-items: stretch; /* make children equal height */
    max-width: 1000px;
    margin: 2rem auto;
    gap: 1.5rem; /* space between map and address */
    padding: 1rem;
    border: 1px solid transparent; /* to visualize container */
    box-sizing: border-box;
}

.map-box {
    flex: 0 0 60%; /* fixed 60% width */
    height: 450px;
    box-sizing: border-box;
    border: 1px solid blue; /* to visualize */
}

.address-box {
    flex: 0 0 35%; /* fixed 35% width */
    padding: 0.5rem 1rem 1rem 1rem; /* top, right, bottom, left */
	font-size: 1.1rem;
    background-color: #fef6e4;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	font-family: 'Lato', sans-serif;
    box-sizing: border-box;
    border: 1px solid green; /* to visualize */
    overflow-wrap: break-word;
}

.address-box h2 {
    margin-top: 0.25rem;
    margin-bottom: 1rem;
	font-size: 2.5rem;
	text-align: center;
    color: #d67009;
	font-family: 'Lobster', cursive;
}

.address-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
	text-align: center;
    color: #d67009;
	font-family: 'Lobster', cursive;
}

/* Responsive stacking below 768px */
@media (max-width: 768px) {
    .map-container {
        flex-direction: column;
    }

    .map-box,
    .address-box {
        width: 100%;
    }

    .map-box {
        height: 300px;
    }

    .address-box {
        text-align: center;
    }
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}