.testimonials_inner_box {
      background: #acd6ad;
      padding: 4rem 3.5rem;
      font-size: 5rem;
      text-align: center;
      font-weight: bold;
      border-radius: 0.5rem;
      display: flex;
      margin-top: 40px;
      margin-bottom: 40px;
      margin-left: 400px;
      margin-right: 400px;
      color: white;
      border: 5px solid rgb(150, 197, 152);
      text-shadow: 2px 2px 0px black;
      box-shadow: 0px 5px 10px #1a002c;
    }

    .testimonial_box {
    display: flex;
    flex-direction: column;
    align-items: center; 
    }
    .buttons{
  color: inherit;
  text-decoration: none;
  border: 1px solid black;
  padding: 10px 20px;
  display: inline-block;
  font-family: sans-serif;
  transition: all 0.1s;

}
.navbar {
  width: 100%;
  background: var(--accent-color, #79addc);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 3rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
/*  stops items from going off screen */
.nav-list {
  display: flex;
  flex-wrap: wrap;          
  gap: 1rem;                
  list-style: none;
  padding: 0 1rem;
  margin: 0;
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-links a.active {
  border-bottom: 2px solid white;
  padding-bottom: 2px;
}
.page-header {
  width: 100%;
  background: var(--accent-color, #79addc);
  text-align: center;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.page-header .navbar {
  background: none; /* remove duplicate color */
  box-shadow: none;
  padding: 0;
}