
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* background-image: url("aambulance.png");
    background-repeat: no-repeat;
    background-position: 2vh; */
}

.container {
    width: 80%;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info {
    margin-bottom: 20px;
}

.info p {
    margin: 10px 0;
    color: #333;
}

.call-button {
    background-color: #d32f2f; 
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #c62828;
}

.map-link {
    margin-top: 20px;
}

.map-link a {
    color: #1e88e5;
    text-decoration: none;
}

.map-link a:hover {
    text-decoration: underline;
}

