﻿/* =========================================
   Modern Base & Reset
   ========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family:
    Klavika,
    custfont,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans TC",
    "Noto Sans CJK TC",
    "Source Han Sans TC",
    "Noto Sans",
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji",
    sans-serif;
  font-size: var(--fs-base);
  line-height: var(--line-height-base);
  color: var(--text-main);
  position: relative;
  overflow-wrap: break-word;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --fs-xs: clamp(0.75rem, 0.71vw + 0.58rem, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.81vw + 0.68rem, 1rem);
  --fs-base: clamp(1rem, 0.95vw + 0.76rem, 1.125rem);
  --fs-lg: clamp(1.125rem, 1.1vw + 0.85rem, 1.25rem);
  --fs-xl: clamp(1.25rem, 1.34vw + 0.92rem, 1.5rem);
  --fs-2xl: clamp(1.5rem, 1.83vw + 1.04rem, 2rem);
  --fs-3xl: clamp(1.75rem, 2.75vw + 1.06rem, 2.5rem);
  --fs-4xl: clamp(2.25rem, 4.2vw + 1.2rem, 3.5rem);
  --fs-5xl: clamp(2.75rem, 6vw + 1.25rem, 4.5rem);

  --line-height-tight: 1.2;
  --line-height-base: 1.6;
  --line-height-relaxed: 1.8;

  --text-main: #212529;
  --text-muted: #40a7ec;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-top: 0;
  margin-bottom: 0.75em;
  letter-spacing: 0.1em;
}

h1 {
  font-size: var(--fs-5xl);
}
h2 {
  font-size: var(--fs-4xl);
}
h3 {
  font-size: var(--fs-3xl);
}
h4 {
  font-size: var(--fs-2xl);
}
h5 {
  font-size: var(--fs-xl);
}
h6 {
  font-size: var(--fs-lg);
}

p {
  margin-top: 0;
  margin-bottom: 1.25em;
  line-height: var(--line-height-relaxed);
}

.text-xs {
  font-size: var(--fs-xs);
}
.text-sm {
  font-size: var(--fs-sm);
}
.text-muted {
  color: var(--text-muted);
}
.text-center {
  text-align: center;
}

/* --- 共用 --- */
.section-wrap {
  width: 100%;
  padding: 80px 20px;
  box-sizing: border-box;
}

.section-wrap img {
  width: 95%;
  max-width: 1000px;
  padding: 15px 0;
  margin: 0 auto;
}

/* --- RWD  --- */
@media screen and (max-width: 768px) {
  .section-wrap {
    padding: 50px 15px;
  }
}

/* --- 警語與注意事項 --- */
.notes {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: justify;
  font-size: var(--fs-xs);
  line-height: var(--line-height-relaxed);
  padding: clamp(10px, 3vw, 15px) 0;
}

.text-info {
  color: #0099ff;
  font-weight: bold;
}

/*按鈕*/
.btn-wrapper {
  text-align: center;
  margin: 1.2em 0;
}

.btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  margin: 2em 0;
}

@media screen and (max-width: 768px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .btn-wrapper .btn,
  .btn-group .btn {
    width: 100%;
    max-width: 320px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-base);
  font-weight: bold;
  padding: 16px 90px;
  border-radius: 50px; 
  text-decoration: none;
  transition: all 0.3s ease; 
  cursor: pointer;
  letter-spacing: 2px;
}


.btn i,
.btn .btn-icon {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}


.btn:hover {
  transform: translateY(-3px);
}
.btn:hover i,
.btn:hover .btn-icon {
  transform: translateX(4px);
}


.btn-white {
  background-color: #ffffff;
  color: #00a3ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  color: #008cff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
}

.btn-primary {
  background-image: linear-gradient(90deg, #00a3ff 0%, #00c6b5 100%);
  background-color: #00a3ff;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 198, 181, 0.1);
}
.btn-primary:hover {
  filter: brightness(1.1);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 198, 181, 0.4); 
}


.btn-accent {
  background-image: linear-gradient(135deg, #ff8a00 0%, #e52e71 100%);
  color: #ffffff;
  border: none;
}
.btn-accent:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 25px rgba(229, 46, 113, 0.5);
}


.btn-outline {
  background-image: none;
  background-color: transparent;
  color: #00a3ff;
  border: 2px solid #00a3ff;
}
.btn-outline:hover {
  background-color: #00a3ff;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 163, 255, 0.3);
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); 
  z-index: 9999;
}

.header-container {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 100%;
  max-width: 1680px; 
  margin: 0 auto;
  padding: 0 40px; 
  box-sizing: border-box; 
  height: 100%;
}

.logo {
  width: 180px;
  display: block;
}
.logo img {
  width: 100%;
  display: block;
}

.menu-checkbox {
  display: none;
}

/* 桌機版 */
@media screen and (min-width: 992px) {
  .menu-icon,
  .menu-overlay {
    display: none; 
  }

  .nav-menu {
    margin-left: auto; 
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 30px; 
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-link {
    color: #333333;
    font-size: 19px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #00a3ff;
    transition: width 0.3s ease;
  }

  .nav-link:hover {
    color: #00a3ff;
  }

  .nav-link:hover::after {
    width: 100%;
  }


  .dropdown-arrow {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    transition: transform 0.3s ease;
  }

  /* --- 下拉選單  --- */
  .has-dropdown {
    position: relative;
  }

  .dropdown-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: #ffffff;
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }


  .has-dropdown:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); 
  }

  .has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-list li a {
    display: block;
    padding: 12px 20px;
    color: #555555;
    text-decoration: none;
    font-size: 15px;
    transition:
      background-color 0.2s,
      color 0.2s;
  }

  .dropdown-list li a:hover {
    background-color: #f5f9ff;
    color: #00a3ff;
  }
}

/* 手機版 */
@media screen and (max-width: 991px) {
  .logo {
    width: 140px; 
  }

  .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 10001; 
    position: relative;
  }

  .menu-icon .bar {
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .menu-checkbox:checked ~ .menu-icon .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-checkbox:checked ~ .menu-icon .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-checkbox:checked ~ .menu-icon .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }


  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 80%; 
    max-width: 350px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 10000;
    padding-top: 80px; 
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); 
    overflow-y: auto;
  }

  .menu-checkbox:checked ~ .nav-menu {
    right: 0; 
  }

  .menu-checkbox:checked ~ .menu-overlay {
    opacity: 1; 
    visibility: visible;
  }


  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav-list > li {
    border-bottom: 1px solid #eeeeee;
  }

  .nav-link {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
    font-size: 18px;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
  }


  .dropdown-list {
    list-style: none;
    padding: 0 0 15px 0;
    margin: 0;
    background-color: #f9f9f9; 
  }

  .dropdown-list li a {
    display: block;
    padding: 15px 25px 15px 45px; 
    color: #666666;
    text-decoration: none;
    font-size: 15px;
    border-top: 1px dashed #e0e0e0;
  }

  .dropdown-arrow {
    display: none; 
  }
}

/* --主視覺 ------------------------------------- */
.KV-section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 700px;
  margin: 0 auto;
  background-color: #f8fbff;
  /*background-image: radial-gradient(circle, #e2ebfa 2px, transparent 2px); */
  background-size: 40px 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.KV-content {
  flex: 1;
  padding: 0 4% 0 8%;
  z-index: 10;
  max-width: 45%;
  margin-top: -40px;
}

.main-title {
  font-size: var(--fs-5xl);
  font-weight: 800;
  line-height: var(--line-height-tight);
  margin-bottom: 15px;
  letter-spacing: 8px;
}

.sub-title {
  color: #222222;
  font-size: var(--fs-2xl);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.sub-title span {
  color: #0099ff;
}

.description {
  color: #5b5b5b;
  font-size: calc(var(--fs-base) * 1.15);
  font-weight: normal;
  line-height: var(--line-height-relaxed);
  max-width: 95%;
  text-align: justify;
}

.description span {
  display: inline;
  font-size: inherit;
  font-weight: bold;
  color: var(--text-muted);
}

.KV-visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

.blue-shape-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0099ff 0%, #00beb3 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.carousel-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 5% 100%);
  z-index: 2;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.blue-shape-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  height: 100%;
  background-color: #4378ff;
  clip-path: polygon(100% 40%, 100% 100%, 75% 100%);
  z-index: 3;
}

/* ================= RWD  ================= */

@media (max-width: 1024px) {
  .KV-section {
    height: 600px;
  }

  .KV-content {
    padding-left: 5%;
    max-width: 50%;
    margin-top: 50px;
  }
  .KV-visual {
    width: 55%;
  }
  .main-title {
    font-size: var(--fs-4xl);
    line-height: var(--line-height-tight);
  }
  .blue-shape-left {
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  }
  .carousel-container {
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 5% 100%);
  }
}

/* 手機版 */
@media (max-width: 768px) {
  .KV-section {
    flex-direction: column;
    height: auto;
    min-height: auto;
    background-image: none;
  }

  .KV-content {
    max-width: 100%;
    padding: 180px 15px 20px 25px;
    text-align: left;
    order: 1;
    margin-top: -40px;
  }

  .KV-visual {
    position: relative;
    width: 100%;
    height: 450px;
    order: 2;
    flex: none;
  }

  .main-title {
    font-size: var(--fs-5xl);
    letter-spacing: 4px;
  }

  .sub-title {
    letter-spacing: 1px;
  }

  .blue-shape-left {
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  }

  .carousel-container {
    left: 0;
    top: 0;
    height: 100%;
    clip-path: polygon(0 23%, 100% 3%, 100% 100%, 0 100%);
  }

  .blue-shape-right {
    display: none;
  }
}

/* --- 引言區塊 --- */
.quote-banner {
  width: 100%;
  background: linear-gradient(90deg, #00a3ff 0%, #00c6b5 100%);
  padding: clamp(3.125rem, 5vw + 1.875rem, 5rem) 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.quote-wrapper {
  position: relative;
  max-width: 800px;
  padding: 0 clamp(2.5rem, 4vw, 3.75rem);
  text-align: center;
}

.quote-text {
  color: #ffffff;
  font-size: var(--fs-2xl);
  font-weight: 500;
  line-height: var(--line-height-base); 
  margin: 0;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  position: absolute;
  color: #ffffff;
  font-size: clamp(3.125rem, 4vw + 2rem, 5rem);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1;
  opacity: 0.9;
}

.left-quote {
  top: -0.2em;
  left: 0;
}

.right-quote {
  bottom: -0.4em;
  right: 0;
}

/* --駕馭多變市場------------------------------------ */
.split-bg-section {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.strategy-container {
  display: flex;
  align-items: stretch;
}

.strategy-intro {
  flex: 0 0 38%;
  position: relative; 
  background-color: #00a3ff;
  padding: 80px 40px;
  z-index: 5;
}

.strategy-intro::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  background-color: #00a3ff;
  z-index: -1;
}

.strategy-intro::after {
  content: "";
  position: absolute;
  display: block; 
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 24px solid #00a3ff; 
  right: -24px; 
  top: 100px; 
  width: 0;
  height: 0;
  z-index: 10; 
}

.intro-title {
  font-size: var(--fs-3xl);
  color: #ffffff; 
}

.intro-text {
  font-size: var(--fs-lg);
  color: #ffffff;
  margin-bottom: 0;
  text-align: justify;
}

.strategy-features {
  flex: 0 0 62%;
  position: relative;
  background-color: #f6f7f9;
  padding: 80px 20px 80px 60px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
}

.strategy-features::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  background-color: #f6f7f9;
  z-index: -1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.feature-icon {
  flex: 0 0 100px;
}

.feature-icon img {
  width: 100%;
  max-width: 110px;
  height: auto;
  display: block;
}

.feature-title {
  font-size: var(--fs-xl);
  color: var(--text-main); 
  margin-bottom: 0.25em; 
  letter-spacing: 2px;
}

.feature-desc {
  font-size: var(--fs-base);
  color: #555555;
  margin-bottom: 0;
}

@media screen and (max-width: 850px) {
  .strategy-container {
    flex-direction: column;
  }

  .strategy-intro {
    flex: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .strategy-intro::after {
    right: 50%;
    transform: translateX(50%);
    top: auto;
    bottom: -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #00a3ff;
    border-bottom: none;
  }

  .strategy-features {
    flex: auto;
    padding: 60px 20px;
  }
}

@media screen and (max-width: 500px) {
  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
}

/* --績效表格------------------------------------- */

.table-responsive {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}

/* --- 表格基礎設定 --- */
.performance-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: var(--fs-base);
  line-height: var(--line-height-base);
}

/* --- 儲存格共用設定 --- */
.performance-table th,
.performance-table td {
  padding: clamp(10px, 1.5vw, 15px) 10px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0; 
}

.performance-table th {
  background-color: #6c849f;
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap; 
}

.performance-table span {
  color: #0099ff;
  font-weight: bold;
}

.performance-table tbody tr:nth-child(even) td {
  background-color: #f8fafc;
}
.performance-table tbody tr:nth-child(odd) td {
  background-color: #ffffff;
}


.performance-table th:first-child,
.performance-table td:first-child {
  text-align: left; 
  position: sticky;
  left: 0; 
  z-index: 2;
}

.performance-table th:first-child {
  background-color: #6c849f;
  z-index: 3;
}
.performance-table tbody tr:nth-child(even) td:first-child {
  background-color: #f8fafc;
}
.performance-table tbody tr:nth-child(odd) td:first-child {
  background-color: #ffffff;
}

#core-allocation {
  background-color: #f4f4f4;
}

#core-allocation .section-title {
  color: var(--text-main);
  margin-bottom: 3rem; 
}

.allocation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px; 
  margin-bottom: 2rem;
}


.allocation-card {
  background-color: #ffffff;
  border-radius: 8px; 
  padding: 30px 20px 50px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 2px solid transparent;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.allocation-card:hover {
  transform: translateY(-10px); 
  border-color: #00beb3; 
  box-shadow: 0 15px 30px rgba(0, 190, 179, 0.15); 
}

.card-icon {
  height: 130px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-icon img {
  max-height: 100%;
  width: auto;
}

.card-title {
  font-size: var(--fs-2xl); 
  color: var(--text-main);
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.card-text {
  font-size: var(--fs-lg);
  color: #555555;
  line-height: var(--line-height-base);
  margin-bottom: 0;
}



@media screen and (max-width: 600px) {
  .allocation-grid {
    grid-template-columns: 1fr; 
    gap: 20px;
  }

  #core-allocation .section-title {
    letter-spacing: 0.1em;
  }
  .performance-table th:first-child,
  .performance-table td:first-child {
    width: 120px;           
    min-width: 120px;       
    max-width: 120px;        
    white-space: normal;     
    word-break: break-word;  
    line-height: 1.4;      
  
}
}

/* 推薦基金 */
.gradient-bg {
  background: linear-gradient(90deg, #00a3ff 0%, #00c6b5 100%);
  color: #ffffff;
}

#fund-cta .text-center {
  text-align: center;
}

.cta-text {
  font-size: var(--fs-2xl); 
  font-weight: 400;
  line-height: var(--line-height-base);
  max-width: 900px;
  margin: 0 auto 40px auto; 
  letter-spacing: 0.05em;
  color: #ffffff;
}

.cta-text span {
  font-weight: 800;
}
/* Footer*/
#site-footer {
  background-color: #ffffff; 
  border-top: 1px solid #eeeeee;
}


.footer-top-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; 
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0; 
}


.footer-brand {
  flex: 0 0 200px; 
}
.footer-brand img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}
.brand-license {
  border-top: 4px solid #d25b20;
  margin-top: 8px;
  padding-top: 8px;
  font-size: 13px;
  font-weight: bold;
  color: #333333;
  letter-spacing: 1px;
}


.footer-info {
  flex: 1; 
  min-width: 280px;
  padding: 0 20px;
}
.info-title {
  color: #005598; 
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.info-details {
  font-size: 13px;
  color: #222222;
  line-height: 1.6;
}


.footer-hotline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap; 
}
.hotline-text {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
}
.hotline-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #f8801a; 
  letter-spacing: 1px;
}


.disclaimer-list {
  list-style-type: disc; 
  padding-left: 20px;
  color: #666666; 
  text-align: justify;
  line-height: var(--line-height-relaxed);
}

.disclaimer-list span {
  font-weight: bold;
  color: #0099ff;
}
.disclaimer-list li {
  margin-bottom: 8px; 
}

@media screen and (max-width: 992px) {
  .footer-top-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-info {
    padding: 0; 
  }

  .footer-brand {
    flex: 0 0 60px;
  }
}

@media screen and (max-width: 500px) {
  .footer-hotline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .footer-brand {
    flex: 0 0 60px;
  }
}
