body {
    font-family: Arial, sans-serif;
    background-color: LightGray;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center; 
}

/* Modern Split Layout */
.content-wrapper {
    display: flex;
    flex-direction: row;
    background-color: rgba(30, 30, 30, 0.85); 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    max-width: 1125px; 
    width: 90%;
    margin-bottom: 120px; 
    backdrop-filter: blur(10px);
}

.image-box {
    flex: 1;
    min-width: 300px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-box {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info h1 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 2em;
}

.info .title {
    color: #b0bec5; 
    font-size: 1.1em;
    margin-bottom: 25px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.info p {
    margin: 10px 0;
    color: #e0e0e0;
    font-size: 0.95em;
    display: block; 
}

/* Map and Footer */
.map-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
}

.footer {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.footer img {
    width: 25vw; 
    height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        align-items: center; 
        flex-direction: column; /* Forces elements to stack vertically */
        justify-content: flex-start;
        padding-top: 20px;
        height: auto;
    }
    
    .content-wrapper {
        flex-direction: column;
        margin-top: 0;
        margin-bottom: 20px;
    }
    
    .image-box {
        height: 250px; 
    }
    
    .info-box {
        padding: 25px;
    }
    
    .map-container {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 0 auto 20px auto; /* Centers the map */
        width: 90%;
        max-width: 400px; /* Slightly wider for modern phones, overrides the 300px desktop limit */
    }
    
    .footer {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .footer img {
        width: 100vw; /* Forces the image to be exactly the viewport width */
        max-width: 100%;
        height: auto;
        display: block;
    }
}