.assurance-section {
  background-color: #e8f5c8;
  padding: 4rem 2rem;
  border-radius: 20px;
  border: 0px solid #bed66e;
  margin: 3rem auto;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.assurance-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.section-title {
  color: #2a7f62;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #bed66e;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.assurance-text {
  text-align: center;
  max-width: 800px;
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.text-content p {
  color: #3a5e2a;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.assurance-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6rem;
  margin: 1.5rem 0;
}

.feature-card {
  position: relative;
  width: 220px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon-container {
  background: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid #bed66e;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-container {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 50px;
  height: 60px;
  transition: transform 0.3s ease;
}

.feature-card h3 {
  color: #2a7f62;
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.card-hover {
  position: absolute;
  bottom: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  border: 1px solid #bed66e;
}

.feature-card:hover .card-hover {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 30px);
}

.card-hover img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #e8f5c8;
}

.card-hover p {
  font-size: 1rem;
  color: #3a5e2a;
  line-height: 1.6;
  margin: 0;
}

.certification-text {
  text-align: center;
  max-width: 800px;
  margin-top: 1rem;
}

.certification-text p {
  color: #3a5e2a;
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}
