/* --- Hero Section --- */
.esante-hero {
  background-color: var(--primary-green);
  color: white;
  padding: 100px 0 140px 0; /* Extra padding bottom for overlap */
  position: relative;
}

.esante-tag {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-orange);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.esante-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.esante-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
  max-width: 700px;
}

/* --- Stats Bar (Floating) --- */
.esante-stats-container {
  margin-top: -80px; /* Pulls it up over the hero */
  position: sticky;
  z-index: 10;
}

.esante-stats-card {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 53, 43, 0.1);
  border-bottom: 4px solid var(--accent-orange);
}

.esante-stat-item h3 {
  color: var(--accent-orange);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.esante-stat-item p {
  color: var(--text-body);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.esante-stat-divider {
  border-right: 1px solid #eee;
}

/* --- Main Content Layout --- */
.esante-content-section {
  padding: 80px 0;
}

.esante-heading {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 40px;
}

.esante-heading:first-child {
  margin-top: 0;
}

.esante-text {
  color: var(--text-body);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Sidebar Info Box */
.esante-sidebar-box {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 150px;
}

.esante-sidebar-item {
  margin-bottom: 25px;
}

.esante-sidebar-label {
  color: #888;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.esante-sidebar-value {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Quote Block */
.esante-quote-box {
  background-color: #fff3f0; /* Very light orange tint */
  border-left: 5px solid var(--accent-orange);
  padding: 40px;
  margin: 50px 0;
  border-radius: 0 12px 12px 0;
}

.esante-quote-text {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary-green);
  font-weight: 500;
  margin-bottom: 20px;
}

.esante-quote-author {
  color: var(--accent-orange);
  font-weight: 700;
}

/* Custom Bullet List */
.esante-list {
  list-style: none;
  padding: 0;
}
.esante-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--text-body);
}
.esante-list li::before {
  content: "\f00c"; /* FontAwesome Check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-orange);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Image Styling */
.esante-image {
  width: 100%;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.esante-btn-custom-orange {
  background-color: var(--accent-orange);
  color: white;
  padding: 12px 35px;
  border-radius: 6px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
}
.esante-btn-custom-orange:hover {
  background-color: #e62e00;
  color: white;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .esante-stat-divider {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .esante-stat-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  .esante-hero h1 {
    font-size: 2.2rem;
  }
  .esante-stats-card {
    padding: 25px;
  }
}
