@font-face {
  font-family: "Chubb Publico Text";
  src: url("../fonts/Chubb-Publico-Text-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chubb Publico Text";
  src: url("../fonts/Chubb-Publico-Text-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Chubb Publico Text";
  src: url("../fonts/Chubb-Publico-Text-Roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.vti__flag {
  width: 20px;
  height: 15px;
  box-shadow: 0 0 1px 0 #888;
  background-image: url(../img/country.png);
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
}

.vti__flag.hk {
  height: 14px;
  background-position: -2171px 0;
}

.vti__flag.cn {
  height: 14px;
  background-position: -1049px 0;
}

.vti__flag.mo {
  height: 14px;
  background-position: -3358px 0;
}

:root {
  --header-height: 70px;
}

@media screen and (max-width: 1070px) {
  :root {
    --header-height: 81px;
  }
}
.anchor {
  padding-top: var(--header-height);
  margin-top: calc(-1 * var(--header-height));
}

html {
  font-family: "Chubb Publico Text", "Noto Sans TC", "Noto Sans SC", "Lato", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  color: #191919;
}

body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  cursor: pointer;
}
.btn.disabled {
  cursor: unset !important;
}

h1,
h2,
h3,
h4,
textarea,
input,
select.select {
  margin: 0;
  font-family: "Chubb Publico Text", "Noto Sans TC", "Noto Sans SC", "Lato", sans-serif;
  font-weight: 400;
}

.chubb {
  font-family: "Chubb Publico Text", "Noto Sans TC", "Noto Sans SC", "Lato", sans-serif;
}

p {
  margin: 0;
}

@media screen and (min-width: 577px) {
  .sm-show {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .sm-hide {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .md-show {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .md-hide {
    display: none !important;
  }
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 8px;
}

.mx-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.ctn {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 20px;
}

.d-flex {
  display: flex;
}

.form-item {
  position: relative;
  padding-bottom: 4px;
}
.form-item .error {
  color: #e41913;
  position: absolute;
  left: 0;
  font-size: 12px;
  padding-left: 5px;
  line-height: 1.1;
}

.layout {
  padding-top: var(--header-height);
  min-width: 420px;
  overflow: hidden;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.layout footer {
  margin-top: auto;
}

header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header .ctn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1240px;
}
header .left {
  height: 32px;
}
header .left a {
  display: block;
  height: 100%;
}
header .left img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
header .right {
  position: relative;
  display: flex;
  align-items: center;
}
header .lang-switcher-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  outline: none;
}
header .lang-switcher-btn:hover {
  background-color: #f5f5f5;
}
header .lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background-color: #fff;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  z-index: 101;
  overflow: hidden;
}
header .lang-dropdown .lang-option {
  width: 100%;
  padding: 12px 16px;
  text-align: left;
  background: none;
  border: none;
  color: #191919;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  outline: none;
}
header .lang-dropdown .lang-option:hover {
  background-color: #f5f5f5;
  color: #6526d9;
}
header .lang-dropdown .lang-option.active {
  font-weight: 700;
  color: #6526d9;
}

footer {
  background-color: #4d4d4d;
  color: #fff;
  font-size: 15px;
  padding: 40px 0;
}
footer .ctn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  footer .ctn {
    align-items: center;
    text-align: center;
  }
}
footer .social-flex {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  margin-right: auto;
}
footer .social-flex a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease;
}
footer .social-flex a:hover {
  opacity: 0.8;
}
footer .social-flex a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-bottom-row {
  display: flex;
  align-items: center;
  gap: 32px;
  row-gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}
footer .rights {
  color: #fff;
}
footer .link-ctn {
  display: flex;
  gap: 24px;
}
footer .link-ctn a {
  color: #fff;
  text-decoration: underline;
}
footer .link-ctn a:hover {
  color: #ccc;
}

.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999;
}
.loading-container .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.loading-container .lds-ring {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}
.loading-container .lds-ring .debug {
  position: absolute;
  font-weight: bold;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  font-size: 30px;
}
.loading-container .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.loading-container .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.loading-container .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.loading-container .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-container0 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999;
}
.loading-container0 .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.loading-container0 .lds-ring {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}
.loading-container0 .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #6526d9 transparent transparent transparent;
}
.loading-container0 .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.loading-container0 .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.loading-container0 .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

.modal-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999;
  display: none;
}
.modal-popup-container.active {
  display: flex;
}
.modal-popup-container {
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-popup-container .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.modal-popup-container .modal-content-card {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 500px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  border-top: 6px solid #6526d9;
}
.modal-popup-container .modal-content-card .modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.modal-popup-container .modal-content-card .modal-icon.success {
  background-color: rgba(127, 205, 50, 0.1);
  color: #7fcd32;
}
.modal-popup-container .modal-content-card .modal-icon.success svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.modal-popup-container .modal-content-card .modal-icon.error {
  background-color: rgba(228, 25, 19, 0.1);
  color: #e41913;
}
.modal-popup-container .modal-content-card .modal-icon.error svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.modal-popup-container .modal-content-card .modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #191919;
  margin-bottom: 16px;
  line-height: 1.3;
  font-family: "Chubb Publico Text", "Noto Sans TC", "Noto Sans SC", "Lato", sans-serif;
}
.modal-popup-container .modal-content-card .modal-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}
.modal-popup-container .modal-content-card .modal-btn-row {
  display: flex;
  justify-content: center;
}
.modal-popup-container .modal-content-card .modal-btn-row .btn {
  min-width: 140px;
}

.ui-widget-header {
  border: 1px solid #cccccc;
  background: #00b9d0 !important;
  border: unset !important;
}

.ui-widget.ui-widget-content {
  border: unset !important;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #fff !important;
  box-shadow: 0 0 5px 0 #888 !important;
}

.ui-datepicker-title > select {
  border: 1px solid #d1d1d1 !important;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #d1d1d1 !important;
  background: rgba(0, 185, 208, 0.2) !important;
  font-weight: bold;
  color: #00b9d0 !important;
}

.ui-widget-header .ui-icon {
  background-image: url(https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/ui-lightness/images/ui-icons_ffffff_256x240.png) !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  background: #fff !important;
}

.hero-features-section {
  background-color: #e5f5d6;
  padding: 0px 0 60px 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero-features-section {
    padding: 0px 0 40px 0;
  }
}
.hero-features-section .hero-image-wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .hero-features-section .hero-image-wrapper {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
}
.hero-features-section .hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-features-section .hero-content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-features-section .hero-title-box {
  background-color: #fff;
  padding: 30px 40px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .hero-features-section .hero-title-box {
    margin-top: -30px;
    padding: 20px;
  }
}
.hero-features-section .hero-title-box h2 {
  font-size: 38px;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero-features-section .hero-title-box h2 {
    font-size: 32px;
  }
}
.hero-features-section .hero-desc {
  max-width: 800px;
  margin: 30px auto;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero-features-section .hero-desc {
    margin: 20px auto;
    font-size: 16px;
  }
}
.hero-features-section .here-question {
  max-width: 800px;
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 1.6;
  color: #6526d9;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero-features-section .here-question {
    margin: 20px auto;
    font-size: 22px;
  }
}
.hero-features-section .hero-btn-wrapper {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .hero-features-section .hero-btn-wrapper {
    margin-bottom: 30px;
  }
}
.hero-features-section .health-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .hero-features-section .health-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .hero-features-section .health-cards-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .hero-features-section .health-cards-grid {
    grid-template-columns: 1fr;
  }
}
.hero-features-section .health-cards-grid.slick-initialized {
  display: block !important;
}
.hero-features-section .health-cards-grid.slick-initialized .slick-list {
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .hero-features-section .health-cards-grid.slick-initialized .slick-list {
    margin-right: 40px;
  }
}
.hero-features-section .health-cards-grid.slick-initialized .slick-track {
  display: flex !important;
  padding: 10px 0;
}
.hero-features-section .health-cards-grid.slick-initialized .slick-slide {
  height: auto;
  margin: 0 10px;
  outline: none;
}
.hero-features-section .health-cards-grid.slick-initialized .slick-slide > div {
  height: 100%;
}
.hero-features-section .health-cards-grid.slick-initialized .slick-slide .health-card {
  height: 100%;
  margin: 0;
  width: 100% !important;
}
.hero-features-section .health-slider-nav-container {
  display: none;
}
@media screen and (max-width: 768px) {
  .hero-features-section .health-slider-nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 10px;
    width: 100%;
  }
}
.hero-features-section .health-slider-nav-container .slick-arrow {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid #191919;
  background: #fff;
  border-radius: 50%;
  font-size: 0;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.hero-features-section .health-slider-nav-container .slick-arrow:hover {
  background-color: #6526d9;
  border-color: #6526d9;
}
.hero-features-section .health-slider-nav-container .slick-arrow:hover::before {
  filter: brightness(0) invert(1);
}
.hero-features-section .health-slider-nav-container .slick-arrow::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: filter 0.3s ease;
}
.hero-features-section .health-slider-nav-container .health-slick-prev::before {
  background-image: url("../images/ico_arrow_right.svg");
  transform: rotate(180deg);
}
.hero-features-section .health-slider-nav-container .health-slick-next::before {
  background-image: url("../images/ico_arrow_right.svg");
}
.hero-features-section .health-slider-nav-container .slick-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.hero-features-section .health-slider-nav-container .health-slider-counter {
  font-size: 14px;
  color: #191919;
  min-width: 30px;
  text-align: center;
}
.hero-features-section .health-card {
  background-color: #fff;
  border-top: 4px solid #6526d9;
  padding: 20px 15px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.hero-features-section .health-card.active {
  background-color: #f3edff;
}
@media screen and (max-width: 768px) {
  .hero-features-section .health-card {
    padding: 10px 20px;
    min-height: 60px;
  }
}
.hero-features-section .health-card .health-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hero-features-section .health-card .health-card-inner {
    justify-content: flex-start;
  }
}
.hero-features-section .health-card .health-card-icon {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.hero-features-section .health-card .health-card-text {
  font-weight: 700;
  color: #191919;
  text-align: center;
  line-height: 1.3;
  text-transform: capitalize;
}

.questionnaire-section {
  position: relative;
  padding: 80px 0;
  border-top: 1px solid #eee;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .questionnaire-section {
    padding: 50px 0;
    padding-bottom: 0;
  }
}
.questionnaire-section.hide-more {
  background-color: #f2f2f2;
}
.questionnaire-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 90px);
  background-color: #f2f2f2;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .questionnaire-section::after {
    height: calc(100% - 90px);
  }
}
.questionnaire-section .ctn {
  position: relative;
  z-index: 2;
}
.questionnaire-section .q-title {
  text-align: center;
  font-size: 32px;
  color: #191919;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .questionnaire-section .q-title {
    font-size: 26px;
  }
}
.questionnaire-section .q-subtitle {
  text-align: center;
  margin-bottom: 50px;
}
.questionnaire-section .q-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.questionnaire-section .q-row:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .questionnaire-section .q-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.questionnaire-section .q-label {
  font-size: 18px;
  color: #191919;
  flex-shrink: 0;
  width: 350px;
}
@media screen and (max-width: 768px) {
  .questionnaire-section .q-label {
    width: 100%;
  }
}
.questionnaire-section .q-label .tooltip-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-left: 2px;
}
.questionnaire-section .q-label .tooltip-wrapper sup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #aaaaaa;
  color: #191919;
  font-size: 11px;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  vertical-align: middle;
  position: relative;
  top: -6px;
}
.questionnaire-section .q-label .tooltip-wrapper .tooltip-content {
  display: none;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #191919;
  text-align: left;
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  width: 280px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: normal;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .questionnaire-section .q-label .tooltip-wrapper .tooltip-content {
    left: 0;
    transform: none;
  }
}
.questionnaire-section .q-label .tooltip-wrapper:hover .tooltip-content {
  display: block;
}
.questionnaire-section .q-field-control {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .questionnaire-section .q-field-control {
    justify-content: flex-start;
  }
}
.questionnaire-section .age-input-group {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border: 1px solid #fff;
  padding: 6px 12px;
  background: #fff;
  min-width: 180px;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .questionnaire-section .age-input-group {
    max-width: 100%;
    width: 100%;
    justify-content: space-between;
  }
}
.questionnaire-section .age-input-group .age-input {
  border: none;
  outline: none;
  width: 40px;
  font-size: 24px;
  text-align: right;
  color: #191919;
  padding-right: 4px;
}
@media screen and (max-width: 768px) {
  .questionnaire-section .age-input-group .age-input {
    width: 100%;
    text-align: left;
    font-size: 22px;
  }
}
.questionnaire-section .age-input-group .age-suffix {
  font-size: 18px;
  font-weight: 400;
}
.questionnaire-section .choice-buttons-row {
  display: flex;
  gap: 0px;
  width: 100%;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .questionnaire-section .choice-buttons-row {
    justify-content: flex-start;
  }
}
.questionnaire-section .choice-buttons-row .choice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  padding: 10px 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  min-width: 180px;
  width: 25%;
  outline: none;
  background-color: #6526d9;
  color: #fff;
}
.questionnaire-section .choice-buttons-row .choice-btn img {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  .questionnaire-section .choice-buttons-row .choice-btn {
    flex: 1 1 calc(50% - 8px);
    min-width: unset;
    padding: 10px 30px;
    font-size: 16px;
    justify-content: flex-start;
  }
}
.questionnaire-section .choice-buttons-row .choice-btn img {
  width: 32px;
  height: 32px;
  margin-right: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.3s ease;
}
@media screen and (max-width: 768px) {
  .questionnaire-section .choice-buttons-row.multi-select {
    gap: 0;
  }
}
.questionnaire-section .choice-buttons-row.multi-select .choice-btn {
  min-width: 180px;
}
@media screen and (max-width: 768px) {
  .questionnaire-section .choice-buttons-row.multi-select .choice-btn {
    min-width: 100%;
    justify-content: flex-start;
  }
}

.recommendation-card {
  margin: 0 auto;
  margin-top: 30px;
  background: #fff;
  padding: 40px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .recommendation-card {
    padding: 30px 20px;
  }
}
.recommendation-card .rec-prefix {
  font-size: 26px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .recommendation-card .rec-prefix {
    font-size: 20px;
  }
}
.recommendation-card .rec-title {
  font-size: 34px;
  color: #191919;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .recommendation-card .rec-title {
    font-size: 26px;
  }
}
.recommendation-card .rec-description {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .recommendation-card .rec-description {
    font-size: 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #191919;
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 0;
  border: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover {
  background-color: #6526d9;
}
.btn:hover .arrow-circle {
  transform: translateX(4px);
}
.btn .arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  transition: transform 0.3s ease;
}
.btn .arrow-circle img {
  width: 100%;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 576px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
}

.product-detail-section {
  padding: 60px 0;
  background-color: #fff;
}
.product-detail-section .product-badge {
  color: #191919;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  align-self: flex-start;
  font-weight: 700;
}
.product-detail-section .product-badge::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #6526d9;
}

.product-detail-card {
  margin: 0 auto;
  background: #fff;
  margin-top: 70px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .product-detail-card {
    flex-direction: column;
  }
}
.product-detail-card .product-card-image {
  position: relative;
  padding: 32px 0 32px 32px;
  min-width: 44%;
}
@media screen and (max-width: 768px) {
  .product-detail-card .product-card-image {
    padding: 20px 20px 0 20px;
  }
}
.product-detail-card .product-card-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 100%;
  background-color: #6526d9;
}
@media screen and (max-width: 768px) {
  .product-detail-card .product-card-image:before {
    width: 100%;
    height: 62%;
  }
}
@media screen and (max-width: 768px) {
  .product-detail-card .product-card-image {
    width: 100%;
    min-height: 240px;
  }
}
.product-detail-card .product-card-image img {
  position: relative;
  width: 100%;
}
.product-detail-card .product-card-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .product-detail-card .product-card-info {
    width: 100%;
    padding: 20px 20px;
  }
}
.product-detail-card .product-card-info.features-list-layout {
  justify-content: flex-start;
  gap: 24px;
  flex-grow: 1;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .product-detail-card .product-card-info.features-list-layout {
    padding: 20px 20px;
  }
}
.product-detail-card .product-card-info.features-list-layout .launch-notice {
  font-size: 18px;
  font-weight: 700;
  background-color: #f3edff;
  padding: 12px 16px;
  border-left: 4px solid #6526d9;
  margin-bottom: 8px;
}
.product-detail-card .product-card-info.features-list-layout .product-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.product-detail-card .product-card-info.features-list-layout .product-feature-item .feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.product-detail-card .product-card-info.features-list-layout .product-feature-item .feature-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail-card .product-card-info.features-list-layout .product-feature-item .feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #191919;
  margin: 0 0 4px 0;
  line-height: 1.3;
  font-family: "Chubb Publico Text", "Noto Sans TC", "Noto Sans SC", "Lato", sans-serif;
}
@media screen and (max-width: 768px) {
  .product-detail-card .product-card-info.features-list-layout .product-feature-item .feature-content h4 {
    font-size: 18px;
  }
}
.product-detail-card .product-card-info.features-list-layout .product-feature-item .feature-content p {
  line-height: 1.4;
  margin: 0;
}
.product-detail-card .product-card-info.features-list-layout .product-feature-item .feature-content .first-in-market-badge {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ec008c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  font-family: "Chubb Publico Text", "Noto Sans TC", "Noto Sans SC", "Lato", sans-serif;
  line-height: 1.1;
}
.product-detail-card .product-card-info .product-title {
  font-size: 34px;
  color: #191919;
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.product-detail-card .product-card-info .product-desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.product-detail-section .more-products-wrapper {
  position: relative;
}
.product-detail-section .more-products-wrapper .more-title {
  font-size: 28px;
  color: #191919;
  margin-bottom: 24px;
  font-family: "Chubb Publico Text", "Noto Sans TC", "Noto Sans SC", "Lato", sans-serif;
}
@media screen and (max-width: 768px) {
  .product-detail-section .more-products-wrapper .more-title {
    font-size: 26px;
  }
}
.product-detail-section .more-products-wrapper .more-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .product-detail-section .more-products-wrapper .more-products-grid {
    display: block;
    margin: 0 -10px;
  }
}
.product-detail-section .more-products-wrapper .more-products-grid.slick-initialized {
  display: block;
}
.product-detail-section .more-products-wrapper .more-products-grid.slick-initialized .slick-list {
  padding: 0 10px;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .product-detail-section .more-products-wrapper .more-products-grid.slick-initialized .slick-list {
    margin-right: 40px;
  }
}
.product-detail-section .more-products-wrapper .more-products-grid.slick-initialized .slick-track {
  display: flex !important;
  padding: 10px 0 20px;
}
.product-detail-section .more-products-wrapper .more-products-grid.slick-initialized .slick-slide {
  height: auto;
  margin: 0 10px;
  outline: none;
}
.product-detail-section .more-products-wrapper .more-products-grid.slick-initialized .slick-slide > div {
  height: 100%;
}
.product-detail-section .more-products-wrapper .more-products-grid.slick-initialized .slick-slide .more-product-card {
  height: 100%;
  margin: 0;
  width: 100% !important;
}
.product-detail-section .more-products-wrapper .more-product-card {
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-detail-section .more-products-wrapper .more-product-card .more-card-image {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.product-detail-section .more-products-wrapper .more-product-card .more-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail-section .more-products-wrapper .more-product-card .more-card-info {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-detail-section .more-products-wrapper .more-product-card .more-card-info .product-title {
  font-size: 26px;
  margin-top: 12px;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-detail-section .more-products-wrapper .more-product-card .more-card-info .product-desc {
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}
.product-detail-section .more-products-wrapper .more-product-card .more-card-info .detail-link {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .product-detail-section .more-products-wrapper {
    padding-bottom: 80px;
  }
  .product-detail-section .more-products-wrapper .slick-arrow {
    position: absolute;
    top: calc(100% + 10px);
    transform: none;
    width: 44px;
    height: 44px;
    border: 1px solid #191919;
    background: #fff;
    border-radius: 50%;
    font-size: 0;
    cursor: pointer;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
  .product-detail-section .more-products-wrapper .slick-arrow:hover:not(.slick-disabled) {
    background-color: #6526d9;
    border-color: #6526d9;
  }
  .product-detail-section .more-products-wrapper .slick-arrow:hover::before {
    filter: brightness(0) invert(1);
  }
  .product-detail-section .more-products-wrapper .slick-arrow::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: filter 0.3s ease;
  }
  .product-detail-section .more-products-wrapper .slick-prev {
    left: 20px;
  }
  .product-detail-section .more-products-wrapper .slick-prev::before {
    background-image: url("../images/ico_arrow_right.svg");
    transform: rotate(180deg);
  }
  .product-detail-section .more-products-wrapper .slick-next {
    left: 76px;
  }
  .product-detail-section .more-products-wrapper .slick-next::before {
    background-image: url("../images/ico_arrow_right.svg");
  }
  .product-detail-section .more-products-wrapper .slick-disabled {
    opacity: 0.4;
  }
}

.contact-section {
  padding: 60px 0;
  background-color: #f2f2f2;
}
.contact-section .contact-title {
  text-align: center;
  font-size: 32px;
  color: #191919;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .contact-section .contact-title {
    font-size: 26px;
  }
}
.contact-section .contact-subtitle {
  text-align: center;
  margin-bottom: 50px;
}
.contact-section .contact-form-container {
  margin: 0 auto;
}
.contact-section .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 4px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact-section .form-grid {
    display: flex;
    flex-direction: column;
  }
}
.contact-section .form-item {
  position: relative;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.contact-section .form-item .form-input {
  width: 100%;
  height: 56px;
  border: 0;
  border-bottom: 1px solid #191919;
  background-color: #fff;
  color: #191919;
  padding: 0 16px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}
.contact-section .form-item .form-input::-moz-placeholder {
  color: #999;
}
.contact-section .form-item .form-input::placeholder {
  color: #999;
}
.contact-section .form-item .select-wrapper {
  position: relative;
  width: 100%;
}
.contact-section .form-item .select-wrapper select.form-select {
  width: 100%;
  height: 56px;
  background-color: #fff;
  color: #191919;
  padding: 0 16px;
  border: 0;
  border-bottom: 1px solid #191919;
  background-color: #fff;
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease;
}
.contact-section .form-item .select-wrapper select.form-select option:disabled {
  color: #999;
}
.contact-section .form-item .select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}
.contact-section .form-item.phone-input-item .phone-row-wrapper {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 56px;
}
.contact-section .form-item.phone-input-item .phone-input-container {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 0 16px;
  height: 56px;
  border: 0;
  border-bottom: 1px solid #b3b3b3;
  flex-grow: 1;
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact-section .form-item.phone-input-item .phone-input-container {
    width: calc(100% - 140px);
  }
}
.contact-section .form-item.phone-input-item .phone-input-container .country-code-selector {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 12px;
  margin-right: 12px;
  height: 32px;
}
.contact-section .form-item.phone-input-item .phone-input-container .country-code-selector .vti__flag {
  width: 20px;
  height: 15px;
  margin-right: 4px;
  flex-shrink: 0;
}
.contact-section .form-item.phone-input-item .phone-input-container .country-code-selector .country-code-select {
  border: none;
  background: transparent;
  font-weight: 500;
  color: #191919;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
  padding-right: 12px;
}
.contact-section .form-item.phone-input-item .phone-input-container .country-code-selector .dropdown-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #666;
  pointer-events: none;
}
.contact-section .form-item.phone-input-item .phone-input-container .phone-input {
  border: none !important;
  outline: none !important;
  height: 100% !important;
  padding: 0 !important;
  flex-grow: 1;
  background: transparent !important;
  font-size: 16px;
  color: #191919;
}
.contact-section .form-item.phone-input-item .btn-send-otp {
  background-color: #b3b3b3;
  color: #fff;
  border: none;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 600;
  min-width: 140px;
}
@media screen and (max-width: 768px) {
  .contact-section .form-item.phone-input-item .btn-send-otp {
    min-width: 120px;
    padding: 0 10px;
  }
}
.contact-section .form-item.phone-input-item .btn-send-otp {
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .form-item.phone-input-item .btn-send-otp:not(:disabled) {
  background-color: #6526d9;
}
.contact-section .form-item.phone-input-item .btn-send-otp:disabled {
  cursor: unset;
  opacity: 0.6;
}
.contact-section .form-item .otp-single-input {
  width: 100%;
  height: 56px;
  font-size: 16px;
  padding: 0 16px;
  outline: none;
  transition: all 0.3s ease;
}
.contact-section .form-item .otp-single-input:disabled {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  color: #999;
  cursor: unset;
}
.contact-section .form-item .otp-single-input:not(:disabled) {
  background-color: #fff;
  padding: 0 16px;
  color: #191919;
}
.contact-section .form-item.birthday-input-item .datepicker-container {
  position: relative;
  width: 100%;
  background-color: #fff;
  height: 56px;
  border: 0;
  border-bottom: 1px solid #191919;
  transition: border-color 0.3s ease;
}
.contact-section .form-item.birthday-input-item .datepicker-container .date-input {
  cursor: pointer;
  border: none !important;
  padding: 0 48px 0 16px !important;
  height: 100% !important;
  width: 100% !important;
  background: transparent !important;
  font-size: 16px;
  color: #191919;
  outline: none;
}
.contact-section .form-item.birthday-input-item .datepicker-container .calendar-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  pointer-events: none;
}
.contact-section .form-item .error {
  color: #e41913;
  font-size: 13px;
  position: absolute;
  bottom: 2px;
  left: 0;
  line-height: 1.2;
}
.contact-section .form-item.has-error .form-input,
.contact-section .form-item.has-error .form-select,
.contact-section .form-item.has-error .phone-input-container,
.contact-section .form-item.has-error .otp-single-input,
.contact-section .form-item.has-error .datepicker-container {
  border-color: #e41913 !important;
}
.contact-section .consents-intro {
  color: #191919;
  margin-bottom: 24px;
  line-height: 1.6;
}
.contact-section .consents-intro .pcd-link {
  text-decoration: underline;
}
.contact-section .consents-container {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.contact-section .consents-container .consent-checkbox-label {
  display: flex;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  line-height: 1.5;
  padding-left: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-bottom: 20px;
}
.contact-section .consents-container .consent-checkbox-label .consent-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.contact-section .consents-container .consent-checkbox-label .consent-checkbox:checked ~ .custom-checkbox {
  background-color: #fff;
}
.contact-section .consents-container .consent-checkbox-label .consent-checkbox:checked ~ .custom-checkbox::after {
  display: block;
}
.contact-section .consents-container .consent-checkbox-label .custom-checkbox {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #191919;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.contact-section .consents-container .consent-checkbox-label .custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background-color: #191919;
  border-radius: 50%;
}
.contact-section .consents-container .consent-checkbox-label .checkbox-text {
  font-weight: 400;
}
.contact-section .consents-container .consent-checkbox-label .error {
  color: #e41913;
  font-size: 13px;
  position: absolute;
  bottom: 0;
  left: 32px;
}
.contact-section .consents-container .consent-checkbox-label.error .custom-checkbox {
  border-color: #e41913;
}
.contact-section .submit-button-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.disclaimers-section {
  padding: 40px 0 60px 0;
  background-color: #fff;
}
.disclaimers-section .disclaimers-content {
  margin: 0 auto;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.disclaimers-section .disclaimers-content p {
  text-align: justify;
}
.disclaimers-section .disclaimers-content ol {
  padding-left: 1.2em;
  list-style-type: lower-roman;
}

.ui-datepicker-header {
  background-color: #fff !important;
}

a.ui-state-default {
  color: #191919 !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #6526d9 !important;
  color: #6526d9 !important;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  color: #191919;
  transition: color 0.3s ease;
  align-self: flex-start;
}
.detail-link.align-right {
  align-self: flex-end;
  margin-top: auto;
  font-weight: 700;
}
.detail-link:hover {
  color: #6526d9;
}
.detail-link:hover .arrow {
  transform: translateX(4px);
}
.detail-link .arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
  display: inline-block;
}/*# sourceMappingURL=style.css.map */