.elementor-86 .elementor-element.elementor-element-a3caec9{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-44ced38 */.health-page {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  box-sizing: border-box;
}

.health-header {
  background-color: #011813;
  padding: 80px 40px;
  text-align: center;
}

.health-header h1 {
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.health-header p {
  color: #FFFFFF;
  font-size: 18px;
  margin: 0;
  opacity: 0.8;
}

/* Intro Section */
.health-intro {
  padding: 80px 40px;
  background-color: #FFFFFF;
}

.health-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.health-intro h2 {
  color: #011813;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.health-intro p {
  color: #000000;
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}

/* Guarantee Cards */
.health-guarantees {
  padding: 80px 40px;
  background-color: #f9f9f9;
}

.health-guarantees-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.guarantee-card {
  background-color: #FFFFFF;
  padding: 40px 30px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  border-color: #011813;
  box-shadow: 0 10px 40px rgba(1, 24, 19, 0.1);
}

.guarantee-number {
  color: #011813;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.guarantee-card h3 {
  color: #011813;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.guarantee-card p {
  color: #000000;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* What's Included */
.health-included {
  padding: 80px 40px;
  background-color: #FFFFFF;
}

.health-included-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.included-content h2 {
  color: #011813;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #000000;
  font-size: 16px;
}

.included-list li:last-child {
  border-bottom: none;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #011813;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.included-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Terms Section */
.health-terms {
  padding: 80px 40px;
  background-color: #011813;
}

.health-terms-container {
  max-width: 1000px;
  margin: 0 auto;
}

.health-terms h2 {
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 40px 0;
  text-align: center;
}

.terms-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.term-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
}

.term-item h4 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.term-item p {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  opacity: 0.8;
}

/* CTA Section */
.health-cta {
  padding: 80px 40px;
  background-color: #FFFFFF;
  text-align: center;
}

.health-cta h2 {
  color: #011813;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.health-cta p {
  color: #000000;
  font-size: 17px;
  margin: 0 0 30px 0;
}

.health-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background-color: #011813;
  color: #FFFFFF;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  background-color: #000000;
}

.cta-btn-secondary {
  background-color: transparent;
  color: #011813;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #011813;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background-color: #011813;
  color: #FFFFFF;
}

/* Responsive */
@media (max-width: 992px) {
  .health-guarantees-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .health-included-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .included-image {
    order: -1;
  }
  
  .included-image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .health-header {
    padding: 60px 20px;
  }
  
  .health-header h1 {
    font-size: 32px;
  }
  
  .health-intro,
  .health-guarantees,
  .health-included,
  .health-terms,
  .health-cta {
    padding: 60px 20px;
  }
  
  .health-intro h2,
  .included-content h2,
  .health-terms h2,
  .health-cta h2 {
    font-size: 26px;
  }
  
  .health-guarantees-container {
    grid-template-columns: 1fr;
  }
  
  .terms-content {
    grid-template-columns: 1fr;
  }
  
  .health-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}/* End custom CSS */