/* Feature insurance section  start */
 
 .insur-heading {
     text-align: center;
     font-size: 1.8rem;
     font-weight: bold;
     color: #002244;
     margin-top: 40px;
     margin-bottom: 40px;
 }

 .insur-box {
     background: #002244;
     padding: 15px;
     border-radius: 15px;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
     height: 100%;
     transition: all 0.3s ease;
     border-bottom: 3px solid transparent;
 }

 .insur-box:hover {
     transform: translateY(-5px);
     border-bottom: 3px solid #002244;
 }

 .insur-icon {
     width: 40px;
     height: 40px;
     margin-bottom: 15px;
 }

 .insur-title {
     font-weight: 700;
     color: #ffffff;
     font-size: 1.1rem;
     margin-bottom: 15px;
 }

 .insur-list {
     padding-left: 20px;
 }

 .insur-list li {
     margin-bottom: 8px;
 }
 /* Feature insurance section  End  */