#sante {
  max-width: 1300px !important;
  margin: 5rem auto;
  padding: 2rem 2.5rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(100, 155, 199, 0.15);
  color:var(--text);
}

#sante h2 {
  color: var(--blue);
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

#sante p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

#sante strong {
  font-weight: 700;
  color: var(--blue);
}

#sante em.note {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--blue);
  margin-bottom: 2rem;
  display: block;
}

#sante .highlight-box {
  background-color: var(--blue-light);
  border-left: 5px solid var(--blue);
  padding: 1.25rem 1.75rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  color: #333333;
  font-size: 1.125rem;
  line-height: 1.6;
}

#sante .highlight-box h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: rgb(50, 80, 120);
  line-height: 1.3;
}

#sante .highlight-box ul {
  list-style-type: disc;
  margin: 0 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #333333;
}

#sante hr {
  border: none;
  border-top: 1px solid rgba(100, 155, 199, 0.4);
  margin: 3rem 0;
}

#sante h3.centered {
  text-align: center;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

#sante p.centered {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

#sante .info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 3rem 0;
  flex-wrap: wrap;
}

#sante .info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 300px;
  min-width: 280px;
  font-weight: 600;
  color: rgb(50, 80, 120);
  font-size: 1.1rem;
}

#sante .info-item img {
  height: 50px;
  width: auto;
  display: block;
}

#sante .divider {
  width: 2px;
  height: 60px;
  background-color: var(--blue);
  margin: 0 1rem;
}

#sante .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px var(--blue-light);
}

#sante .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 600px) {
  #sante .info-container {
    flex-direction: column;
  }
  #sante .divider {
    display: none;
  }
}