body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h4 {
  margin: 0;
  color: #AD0000;
}

footer {
  text-align: center;
}
.container {
  text-align: center;
  padding: 20px;
}

.container p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.5; /* Improves readability */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .container p {
    width: 90%; /* Wider on smaller screens */
    text-align: left; /* Left-aligned on mobile for better readability */
  }
}

.search-bar input[type="text"] {
  width: 70%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.search-bar button {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.search-bar button:hover {
  background-color: #0056b3;
}

input {
  font-size: 16px;
}
input::placeholder {
  font-size: 18px;
  color: #999;
}

.address-list {
  margin-top: 20px;
  text-align: center;
}

.map-container {
  height: 60vh; /* Use viewport height for responsiveness */
  width: 100%; /* Full width on all devices */
  max-width: 1200px; /* Maximum width for larger screens */
  margin: 20px auto; /* Center the map */
  border-radius: 8px; /* Optional: rounded corners */
  box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Optional: subtle shadow */
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
  .map-container {
    height: 50vh; /* Slightly smaller height on mobile */
    width: 95%; /* Slightly less than full width on mobile */
  }
}
#addressList {
  list-style-type: none;
}

#addressList a {
  color: #AD0000;
}

#addressList a:not(:last-child) {
  margin-bottom: 10px; /* Add space between list elements */
}

footer {
  text-align: center;
  padding-bottom: 20px; /* Adds padding to the bottom of the footer */
}

footer p {
  margin-bottom: 10px; /* Adds space between the note and the link */
}

#contact-us {
  color: #0056b3; /* Sets the link color to blue */
  text-decoration: none; /* Removes the default underline */
  cursor: pointer; /* Changes the cursor to a pointer on hover */
}

#contact-us:hover {
  text-decoration: underline; /* Adds underline on hover for better UX */
}
