/* Header image styling */
.header-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Spacing below the header */
header {
  margin-bottom: 20px;
}

/* Responsive header image height */
@media (max-width: 768px) {
  .header-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .header-image {
    height: 120px;
  }
}

/* Heading styles */
h2 {
  font-size: 24px;
  font-weight: 500;
}

@media (min-width: 992px) {
  h2 {
    font-size: 30px;
  }
}

/* About Me section styles */
#about-me {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.05);
}

/* About Me image */
#about-me img {
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block;
}

#about-me h1 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

#about-me h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #34495e;
}

#about-me p {
  font-size: 1.1rem;
  line-height: 1.6;
}

#about-me ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

#about-me ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.treatment-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

nav.navbar {
  background-color: #e9f0f7;
}

nav.navbar .navbar-brand {
  font-size: 1.5rem;
}
