/* INSURANCE SECTION ONLY */
.insurance-section {
  position: relative;
  width: 100%;
  background: linear-gradient(to right, #f5fbff 0%, #ffffff 100%);
  overflow: hidden;
  padding: 100px 20px;
}

#insurance-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.insurance-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  background: linear-gradient(135deg, #f8fdfc 0%, #f1f4f7 100%);
  border-radius: 30px;
  box-shadow:
    0 0 0 1px #e0e0e0,
    0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-wrap: wrap;
  padding: 50px 40px;
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
}

.insurance-text {
  flex: 1;
  min-width: 280px;
  padding-right: 20px;
}

.insurance-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #111;
}

.insurance-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.insurance-text ul {
  list-style: none;
  margin: 20px 0 35px 0;
  padding: 0;
}

.insurance-text ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.insurance-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: #00c56f;
  border-radius: 50%;
}


.insurance-text a {
  color: #4a6cf7;
  text-decoration: none;
  font-weight: 600;
}

.insurance-button {
  padding: 12px 28px;
  font-size: 16px;
  background-color: #00c26f;
  border: 2px dashed rgba(0, 194, 111, 0.5);
  color: #fff !important;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 400;
  box-shadow: 0 8px 20px rgba(0, 194, 111, 0.3);
  transition: all 0.3s ease;
}

.insurance-button:hover {
  background-color: #00a95f;
}

.insurance-image {
  flex: 1;
  min-width: 280px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.insurance-image::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  background-size: contain;
  opacity: 0.2;
  border-radius: 25px;
  top: 5%;
  left: 5%;
  z-index: -1;
}

.insurance-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
}

@media(max-width: 768px) {
  .insurance-container {
    flex-direction: column;
    text-align: left;
  }
  .insurance-text, .insurance-image {
    padding: 10px;
  }
}
