body {
    font-family: Arial, sans-serif; /* Uniform font for the whole page */
    margin: 0;
    padding: 0;
    background: #f4f4f4; /* Light grey background for the page */
}
.container {
    max-width: 960px;
    margin: auto auto;
    padding: 10px;
    background: white; /* White background for content area */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    border-radius: 8px; /* Rounded corners for modern look */
    text-align: center;
}

.container h1{
    font-size: 3vh;
    color: #666666;
    font-style: italic;
    text-decoration: underline;
}

#map {
    height: 400px;
    width: 100%;
    margin-bottom: 20px; /* Space below the map */
    border-radius: 8px; /* Rounded corners for the map */
}
address {
    color: #333; /* Dark grey color for text */
    margin-top: 20px;
    font-style: normal; /* Avoid italic font style */
    line-height: 1.6;
}
address a {
    color: #007BFF; /* Example color */
    text-decoration: underline; /* underline */
}
abbr a {
    color: #3498db; /* Example color */
    text-decoration: none; /* No underline */
}


@media (max-width: 768px) {
    .container {
        width: 95%; /* Slightly more width for smaller screens */
        padding: 15px; /* Reduce padding */
        margin: 10px;
    }
    h1 {
        font-size: 2em; /* Slightly smaller font size */
    }
}

/* Very small screens (phones) */
@media (max-width: 480px) {
    .container {
        width: 95%; /* Full width on very small devices */
        padding: 10px; /* Even smaller padding */
        margin: 10px;
    }
    h1 {
        font-size: 1.75em; /* Even smaller font size */
    }
    a[href^="tel:"] {
        display: block; /* Make the phone number its own line */
        background-color: #eaf1f8; /* Light background to highlight */
        color: #007bff; /* Make the color stand out */
        padding: 10px; /* Larger area for easier tapping */
        border-radius: 5px; /* Aesthetic touch with rounded corners */
        margin-top: 10px; /* Extra space from other content */
    }
}