body {
    background-color: #1a1a1a; /* Dark background */
    color: #f0f0f0; /* Light text */
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 20px;
    background-color: #2b2b2b; /* Slightly lighter dark shade for container */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.5); /* Reddish glow */
    margin: 20px;
}

h1 {
    color: #ff4d4d; /* Striking red/pink color */
    font-size: 3.5em;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    color: #f0f0f0;
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 2px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 300;
}

.map-container {
    margin-top: 40px;
    border: 2px solid #ff4d4d; /* Red border for map */
    border-radius: 5px;
    overflow: hidden; /* Ensures the iframe respects the border radius */
}

.map-container iframe {
    display: block; /* Removes potential extra space below iframe */
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8em;
    }
    h2 {
        font-size: 1.6em;
    }
    p {
        font-size: 1em;
    }
    .container {
        margin: 15px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2em;
    }
    h2 {
        font-size: 1.3em;
    }
    p {
        font-size: 0.9em;
    }
    .container {
        margin: 10px;
        padding: 10px;
    }
    .map-container {
        margin-top: 30px;
    }
    .map-container iframe {
        height: 300px; /* Adjust map height for smaller screens */
    }
}
