/* Global light theme overrides */
body {
    background-color: #f7f7f7 !important;
    color: #333333 !important;
}
.site-header,
.site-footer {
    background-color: #ffffff !important;
    color: #333333 !important;
}

/* Sticky CTA container and buttons */
.hhd-sticky-cta-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}
.hhd-sticky-cta {
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}
.hhd-sticky-cta-primary {
    background-color: #b7737a;
    color: #ffffff;
}
.hhd-sticky-cta-primary:hover {
    background-color: #930331;
}
.hhd-sticky-cta-secondary {
    background-color: #ffffff;
    color: #b7737a;
    border: 2px solid #b7737a;
}
.hhd-sticky-cta-secondary:hover {
    background-color: #b7737a;
    color: #ffffff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  /* Reposition sticky CTA container to bottom full width row */
  .hhd-sticky-cta-container {
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    padding: 10px;
  }

  .hhd-sticky-cta {
    flex: 1;
    margin: 0 4px;
    text-align: center;
  }

  /* Adjust hero section for mobile */
  .hhd-hero {
    padding: 60px 20px;
  }
  .hhd-hero h1 {
    font-size: 1.8rem;
  }
  .hhd-hero p {
    font-size: 1rem;
  }
}


/* Improve hero readability on all screens */
.hhd-hero h1,
.hhd-hero p {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Optional: lighten overlay by adding background color */
.hhd-hero {
  background-color: rgba(0, 0, 0, 0.4);
}


/* Hide duplicate testimonials beyond the first three */
.hhd-testimonials .hhd-testimonial:nth-of-type(n+4) {
    display: none;
}
/* Hide citation footnote links in testimonials */
.hhd-testimonials a {
    display: none;
}


/* Style testimonials for better appearance */
.hhd-testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hhd-testimonial {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}
.hhd-testimonial p {
  font-size: 1rem;
  line-height: 1.4;
}
.hhd-testimonial cite {
  display: block;
  margin-top: 15px;
  font-weight: 600;
7322: #b7737a;
color: #b7737a;  font-size: 1rem;
}

/* Custom logo and hero adjustments */
.hhd-hero-overlay {
  background: rgba(0, 0, 0, 0.2) !important;
}

.site-title a, .site-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b3d91;
}

.hhd-testimonial-author {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #b7737a;
}
