body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #CE2026; /* Red background */
    color: white;
}

header {
    background-color: white;
    padding: 20px 0;
}

.logo-container {
    text-align: center;
}

.logo {
    max-width: 200px; /* Adjust the size of the logo as needed */
}

.container {
    width: 100%; /* Expand container to full width */
    padding: 20px 0; /* Adjust padding for full width container */
    background-color: white; /* White background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
	  margin: 20px auto; /* Center the container horizontally */
    text-align: center; /* Center the text inside the container */
}

h1 {
    color: #CE2026; /* Red color for the business name */
}

h2 {
    color: #CE2026; /* Red color for the business name */
	padding-top: 5px;
}

a {
    color: #CE2026; /* Red color for links */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2F2E2E; /* Dark color on hover */
}

.container p, address {
    color: black; /* Black color for paragraphs */
    margin-bottom: 10px;
	font-style: normal
}

