h2.main-color {
  position: relative;
}

h2.main-color::before {
  content: attr(data-count);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 80px;
  color: #323232;
  opacity: .2;
  line-height: 1;
}

section p {
  margin-bottom: 1rem;
}

p.content {
  margin-bottom: 0 !important;
}

ul.specific-class {
  list-style-type: disc !important;
  padding-left: 1.5rem;
  /* 確保列表項目有足夠的空間顯示 disc */
}

ul.specific-class li {
  list-style-type: disc !important;
}

section .special {
  padding-top: 1.5rem !important;
  padding-bottom: 2.5rem !important;
}

.faq-card-bg {
  border-radius: 20px;
  background: #F6F6F6;

}

/*顏色區塊*/
:root {
  --dark-blue: #097189;
}

.dark-blue {
  color: var(--dark-blue);
}

h3.card-title {
  margin: 1rem 0 1rem;
}


.check-list li {
  position: relative;
  padding-left: 1em;
  list-style: none;
}

.check-list li::before {
  content: "✓";

  font-weight: bold;
  position: absolute;
  left: 0;
}

.check-list li.none::before {
  content: "";

  font-weight: bold;
  position: absolute;
  left: 0;
}

p.introduce {
  width: 82%;
  text-align: justify;
}

.icon-link-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.more-link {
  color: #0066cc;
  text-decoration: none;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #000000 !important;
  transition: all 0.3s ease;
  padding-right: 15px;
}

a.more-link:hover {
  color: #097189 !important;
  text-decoration: underline;
}

@media (max-width:768px){
  .more-link{
    font-size: 18px !important;
  }
}

@media (min-width:769px) {
  .faq-card-bg {
    display: flex;
    flex-direction: column;
  }

  .faq-card-bg>*:not(:last-child) {
    flex: 1 0 auto;
  }

  .faq-card-bg>img {
    margin-top: auto;
  }



}

@media (max-width:768px) {
  .col-12.col-md-4.mb-4 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  p.introduce {
    width: 90%;
  }

  .container-fluid {
    width: 90% !important;
  }
}