body {
  font-family: "Quicksand", sans-serif;
  background-color: #f8f9fa; /* A very light grey for a soft background */
  color: #333;
}
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}
.nav-link {
  color: #555;
  font-weight: 500;
}
.nav-link:hover, .nav-link.active {
  color: #007bff; /* A calm, professional blue */
}
.hero-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
.section {
  padding: 60px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 600;
  color: #005f73; /* A deep teal for headings */
}
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
}
.list-group-item {
  border-color: #e9ecef;
}
.list-group-item strong {
  color: #005f73;
}
.footer {
  background-color: #fff;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #6c757d;
}
.about-img {
  max-width: 100%;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Location cards on the homepage */
.location-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.location-card .card-body {
  text-align: center;
}
.location-card .card-title {
  color: #005f73;
  font-weight: 600;
}
.location-card .card-tagline {
  color: #6c757d;
  margin-bottom: 1rem;
}

/* Nurse profile cards on location pages */
.nurse-card img {
  width: 100%;
  max-width: 260px;
  border-radius: 15px;
  margin-bottom: 1rem;
  object-fit: cover;
}
.nurse-card .nurse-name {
  color: #005f73;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.nurse-card .nurse-title {
  color: #6c757d;
  font-weight: 500;
  margin-bottom: 1rem;
}
.nurse-card .nurse-contact a {
  color: #007bff;
  text-decoration: none;
}
.nurse-card .nurse-contact a:hover {
  text-decoration: underline;
}

/* Call-to-action banner on location pages */
.cta-banner {
  background-color: #005f73;
  color: #fff;
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
}
.cta-banner h2 {
  font-weight: 600;
}
.cta-banner .discount-note {
  font-size: 1.1rem;
  margin: 1rem 0;
}
.cta-banner .btn-call {
  background-color: #fff;
  color: #005f73;
  font-weight: 600;
  border: none;
}
.cta-banner .btn-call:hover {
  background-color: #e9ecef;
}
.cta-banner .btn-book-online {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.cta-banner .btn-book-online:hover {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
}

/* Community partners list */
.partner-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.partner-list li {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 30px;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  color: #005f73;
}

.breadcrumb-nav {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}
.breadcrumb-nav a {
  color: #6c757d;
  text-decoration: none;
}
.breadcrumb-nav a:hover {
  text-decoration: underline;
}
