/* Resetting default margin and padding */
body, h1, h2, h3, h4, h5, h6, p, ul {
  margin: 0;
  padding: 0;
}

/* Ensure body and html take full height and use Flexbox */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Header styles */
header {
  text-align: center;
}

.banner {
  background-color: white;
  padding: 20px 0;
}

.banner img {
  width: auto;
  height: 100px; /* Adjust the height according to your preference */
  display: block;
  margin: 0 auto;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  background-color: #333;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  padding: 10px 20px;
}

nav ul li a:hover {
  background-color: #555;
}

/* Footer styles */
footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px 0;
  position: relative; /* Change to relative */
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content p {
  margin-bottom: 5px;
}

.footer-content a {
  color: white;
  text-decoration: underline;
  margin-bottom: 10px;
}

.footer-content a:hover {
  color: #ccc;
}

.footer-content a img {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-bottom: 0px; /* Adjust as needed to align with text */
}

.footer-content {
  text-align: center;
  padding: 5px;
  margin-top: 5px;
}

nav {
  margin-bottom: 20px; /* Add space between navigation and online bill pay button */
}

.online-bill-pay {
  text-align: center;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  background-color: #333;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #555;
}

.main-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  flex: 1; /* Ensure main content grows to fill available space */
  padding-bottom: 60px; /* Add padding to the bottom */
}

.main-content p {
  margin-bottom: 20px;
  font-size: 18px; /* Adjust the font size as needed */
  text-align: left; /* Align text to the left */
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
}

.location {
  margin-bottom: 40px;
}

.location-name strong {
  font-size: 25px;
  margin-bottom: 5px;
}

.address p,
.office-hours p {
  margin-bottom: 5px;
  text-align: left;
}

.office-hours strong {
  display: block;
  margin-bottom: 5px;
  text-align: left;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

h1, {
  text-align: center;
  margin-bottom: 15px;
}

.physician-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.physician {
  text-align: center;
}

.physician img {
  width: 99px;
  height: 124px;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
}

.physician p {
  margin-top: 5px;
  text-align: center;
}

.section-heading {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

form {
  max-width: 400px;
  margin: 0 auto;
}

label {
  display: block;
  margin-bottom: 5px;
}

input,
textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

.physician-bio {
  margin-bottom: 40px;
}

.physician-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* Optional: Adds a rounded border to the physician photo */
  margin-bottom: 15px;
}

.biography {
  text-align: justify;
  line-height: 1.5;
}