body {
    font-family: Roboto, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    
}

.header {
    background-color: #ffccff; /* Header background color remains the same */
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.container {
    flex: 1; /* Fill remaining vertical space */
    text-align: center;
    background-color: #f5f5f5;
	color: #333;
    padding: 20px 25%; /* Default padding for screens wider than 600px */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

/* Media query for mobile devices and screens narrower than 600px */
@media (max-width: 600px) {
    .container {
        padding: 20px 10%; /* Adjusted padding for screens narrower than 600px */
    }

    .phone {
        color: blue; /* Change the color for better visibility on mobile */
        text-decoration: underline; /* Make it look like a link */
        cursor: pointer; /* Change the cursor to indicate it's clickable */
    }
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .phone {
        color: blue; /* Change the color for better visibility on mobile */
        text-decoration: underline; /* Make it look like a link */
        cursor: pointer; /* Change the cursor to indicate it's clickable */
    }
}

/* Additional margin for h2 and h3 headers within the "page" div */
.container h2, .container h3 {
    margin-top: 35px; /* Adjust the margin as needed */
}