ul, li {
  list-style: none;
}

#wrap .options_wrap {
  position: absolute;
  top: 3807px;
  width: 100%;
  background: #f4f6f9;
  padding: 100px 0 60px;
}
#wrap .options_wrap .inner {
  width: 90%;
  margin: 0 auto;
}
#wrap .options_wrap .title_wrap {
  text-align: center;
  margin-bottom: 42px;
}
#wrap .options_wrap .title_wrap span {
  display: block;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #4375ff;
  margin: 0 auto 15px;
  background: #fff;
  border-radius: 50px;
  width: fit-content;
  padding: 15px 35px;
}
#wrap .options_wrap .title_wrap h2 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -2px;
  color: #222;
}
#wrap .options_wrap .title_wrap h2 b {
  font-weight: 700;
  color: #0b55d8;
}

#wrap .options_wrap .list_wrap ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
#wrap .options_wrap .list_wrap ul li {
  perspective: 1000px;
  height: 315px;
}

.card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.card.flipped {
  transform: rotateY(180deg);
}
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-front {
  background: #fff;
}
.card-back {
  background: #f1f8ff;
  opacity: 0.95;
  border: 1px solid #ddd;
  transform: rotateY(180deg);
  padding: 30px 27px;
  justify-content: flex-start;
}

#wrap .options_wrap .list_wrap ul li .tag_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#wrap .options_wrap .list_wrap ul li .tag_wrap span {
  display: block;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -1px;
  padding: 9px 17px;
  border-radius: 50px;
}
#wrap .options_wrap .list_wrap ul li .tag_wrap span.blue {
  background: #d7e7ff;
  color: #0954db;
}
#wrap .options_wrap .list_wrap ul li .tag_wrap span.green {
  background: #e6f4eb;
  color: #095f2c;
}
#wrap .options_wrap .list_wrap ul li .tag_wrap span.red {
  background: #ffe1e1;
  color: #e13d3d;
}
#wrap .options_wrap .list_wrap ul li .title {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.4;
  color: #333;
  text-align: center;
}
#wrap .options_wrap .list_wrap ul li button {
  background: #f0f3f7;
  border: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #656565;
  display: block;
  margin: 0 auto;
  padding: 6px 22px;
  border-radius: 8px;
  cursor: pointer;
}

#wrap .options_wrap .list_wrap ul li .more_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f1f8ff;
  opacity: 0.95;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 30px 27px;
}
#wrap .options_wrap .list_wrap ul li .more_wrap h6 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.4;
  color: #777;
  margin-bottom: 28px;
}
#wrap .options_wrap .list_wrap ul li .more_wrap p {
  font-size: 23px;
  letter-spacing: -1px;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
}
#wrap .options_wrap .list_wrap ul li .more_wrap .close {
  position: absolute;
  top: 35px;
  right: 25px;
  padding: 0;
  background: none;
}
#wrap .options_wrap .link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #0b55d8;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -1px;
  padding: 38px 0;
  border-radius: 20px; 
  margin-top: 60px;
}