*{
  box-sizing: border-box;
}

/* Main container styles */
.aboutIntroOne-brand-section {
  max-width: 1440px;
  width: 100%;
  height: 700px;
  position: relative;
  margin:  auto; /* 保留一個居中設定 */
  padding-top: 50px;
  overflow: hidden;
  background-color: #fff;
}

/* Content container */
.aboutIntroOne-content-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1200px; 
  margin: 0 auto;
  padding: 40px 20px;
  /* 這裡加上一行，讓它等於圖片高度 + 內邊距 */
  min-height: calc(698px + 80px); 
  box-sizing: border-box;
  display: flex;  /*啟用 Flexbox */
  justify-content: space-between; /*使內容兩側對齊   */
  align-items: stretch; /*使內容在垂直方向上拉伸以填滿容器  */
} 
  /* Main image styles */
  .aboutIntroOne-main-image {   
    position: relative;
    width: 656px;
    height: 680px;
    border-radius: 20px !important; /*強制圓角樣式*/
    overflow: hidden !important; /* 隱藏溢出部分 */
    left: 55%;
    top: 35%;
    transform: translate(-100%, -50%); /* 水平向左移動自身寬度，垂直居中 */
    
} 
  .aboutIntroOne-main-image > img {
  display: block;
  width: 100%;
  height: 100%;
  /* max-width: 495px; */
  object-fit: cover;
  border-radius: inherit !important; /* 繼承父元素的圓角樣式 */
  margin-top: 50px; /* 添加上邊距 */
  } 
  /* Brand story text styles */
  .aboutIntroOne-brand-story {
    position: absolute;
    left: 60%;
    top: 50%;
    transform: translateY(-50%);
    width: 493px;
    padding: 0 20px; /* 添加左右內邊距 */
    /* margin-top: 80px; 添加上邊距 */
  }

  @media (max-width: 1024px) {
    .aboutIntroOne-brand-section {
      max-width: 1024px;
      height: 600px;
      padding: 20px;
    }

    .aboutIntroOne-main-image {
      flex: 0 0 50%;        
      max-width: 495px;
      box-sizing: border-box;
      left: 55%;
      top: 50%;
      /* overflow: hidden;
      border-radius: 20px; */
      }
    
      .aboutIntroOne-main-image > img {
        width: 90%;
        height: auto;
        object-fit: cover;
      }
      .aboutIntroOne-content-container{
        display: flex !important;
        justify-content: space-between; /* 左圖右文 */
        align-items: stretch;           /* 等高 */
        max-width: 1200px;
        margin: auto;
        padding: 30px 20px;
        box-sizing: border-box;
      }
      .aboutIntroOne-brand-story {
        position: static; 
        /* left: 0;
        top: 0; */
        width: 48%;
        margin-top: 1rem; /* 添加上邊距 */
        transform: none; /* 移除變形 */
        padding: 0 20px; /*添加左右內邊距*/
        /* margin-top: 80px; 添加上邊距 */
      }
  }
  
  @media (max-width: 768px) {
    .aboutIntroOne-brand-section {
      height: auto ;
      max-width: 768px;
      padding: 30px 15px 0px;
      overflow: visible;
    }

    .aboutIntroOne-content-container {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: flex-start !important;
      width: 100% !important;
      max-width: 656px !important;
      margin: 0 auto !important;
      padding: 20px 15px 0!important;
      box-sizing: border-box;
      /* height: 850px !important;  */
      /*overflow: hidden !important; 防止內容溢出 */
    }
    .aboutIntroOne-main-image,
    .aboutIntroOne-brand-story {
      position: static !important;
      width: 100% !important;
      left: auto !important;
      top: auto !important;
      transform: none !important;
      box-sizing: border-box !important;
    }
    .aboutIntroOne-main-image {
      /* position: relative;
      width: 330px;
      height: 400px;
      /* left: 50% !important;
      transform: translateX(-50%) !important; */
      position: static;
      width: 100%;
      height: 16rem; /* 使用相對單位，根據字體大小自動調整 */
      margin-bottom: 1rem; /* 添加底部邊距以分隔內容 */
      border-radius: 15px;
      overflow: hidden; 
    }

    .aboutIntroOne-main-image > img {
      display: block;
      width: 100% !important; /* 確保圖片寬度為100% */
      height: 100% !important; /* 確保圖片高度為100% */
      object-fit: cover;
      border-radius: inherit;
      
    }

    .aboutIntroOne-brand-story{
      padding: 20px 20px !important;
    }
     

    .aboutIntroOne-brand-mission {
      font-size: 14px !important;
      width: 100% !important;
      overflow: visible !important; /* 確保內容不會被剪裁 */
    }
  }
  
  /* Scent image styles */
  .aboutIntroTwo-scent-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 確保它位於內容下方 */
  
}
  .aboutIntroTwo-scent-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* 較低的z-index確保它位於內容下方 */
  }

  
  /* Brand philosophy banner */
  .aboutIntroOne-brand-philosophy {
    width: 90%;
    max-width: 1241px; 
    height: 153px;
    border-radius: 100px;
    box-shadow: 7px 10px 20px 0px rgba(0, 0, 0, 0.15);
    /* 移除絕對定位改為相對定位 */
    position: relative;
    /* 設置合適的邊距，與上下元素分隔 */
    margin: 50px auto 50px; /* 上方100px，下方50px，左右自動 */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(3px);

  }
  
  @media (max-width: 1024px) {
    .aboutIntroOne-brand-philosophy {
      position: relative;
      left: 0;
      top: 0;
      width: 100%;
      height: auto;
      padding: 20px;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .aboutIntroOne-brand-philosophy {
      display: none;
    }
  }
  
  /* Philosophy text */
  .aboutIntroOne-philosophy-text {
  width: 935px;
  color: #0b2b3e;
  text-align: center; /* 已有水平置中 */
  font-family: "Noto Sans TC", sans-serif;
  font-size: 20px;
  font-weight: 550;
  line-height: 160%;
  letter-spacing: 1.8px;
  margin: 0; /* 移除預設邊距 */
  z-index: 5;
  }
  
  @media (max-width: 1024px) {
    .aboutIntroOne-philosophy-text {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .aboutIntroOne-philosophy-text {
      font-size: 16px;
    }

    .blur-bg-container {
      background-image: none !important; /* 強制覆蓋內聯樣式 */
    }
  }
  @media (max-width:430px) {
    .aboutIntroOne-philosophy-text{
      font-size: 14px;
    }

    
  }

  /* Story subtitle */
  .aboutIntroOne-story-subtitle {
    color: #0b2b3e;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 20px;
    font-weight: 1000;
    line-height: 140%;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  
  @media (max-width: 1024px) {
    .aboutIntroOne-story-subtitle {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .aboutIntroOne-story-subtitle {
      font-size: 18px;
    }
  }
  
  /* Story title */
  .aboutIntroOne-story-title {
    color: #0b2b3e;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 40px;
    font-weight: bold;
    line-height: 140%;
    letter-spacing: 3.8px;
    margin-bottom: 32px;
  }
  
  @media (max-width: 1024px) {
    .aboutIntroOne-story-title {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .aboutIntroOne-story-title {
      font-size: 28px;
    }
  }
  
  /* Story description */
  .aboutIntroOne-story-description {
    color: #0b2b3e;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 1.6px;
    width: 456px;
    margin-bottom: 32px;
  }
  
  @media (max-width: 1024px) {
    .aboutIntroOne-story-description {
      width: 100%;
      margin-bottom: 0;
      font-size: 16px;   
    }
  }
  
  @media (max-width: 768px) {
    .aboutIntroOne-story-description {
      font-size: 14px;
    }
  }
  
  /* Divider container */
  .aboutIntroOne-divider-container {
    /* margin: 32px 0; */
    width: 100%;           /* 跟文字內容一樣滿版寬度 */
    max-width: 100%;       /* 不超出父容器 */
    margin: 1rem 0;        /* 上下留白，可依需求調整 */
  }

  .aboutIntroOne-divider{
    display: block;
    width: 100%;
    height: 0;
    border-bottom: 1px solid #000; /* 黑色分隔線 */
    margin: 1rem 0;
  }
  
  /* Brand mission */
  .aboutIntroOne-brand-mission {
    color: #0b2b3e;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 1.6px;
    width: 456px;
  }
  
  @media (max-width: 1024px) {
    .aboutIntroOne-brand-mission {
      width: 100%;
    }
  }
  

  .aboutIntroOne-divider {
    width: 100%;
  }


  /* aboutIntroTwo */

  .aboutIntroTwo-scent-marketing {
    width: 100%;
    height: 480px;
    background-color: #808080; /* 暫時使用灰色背景 */
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;

      /* 添加背景圖屬性 */
    background-size: cover; /* 可改為: contain 或 指定尺寸 如 1200px auto */
    background-position: center; /* 居中顯示圖片 */
    background-repeat: no-repeat; /* 避免重複 */
  }
  
  /* 左側內容區塊 */
  .aboutIntroTwo-left-content {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 40px 5%; */
    box-sizing: border-box;
    color: white;
  }
  
  .aboutIntroTwo-left-content h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
  }
  
/* 修改列表樣式，靠左對齊 */
.aboutIntroTwo-left-row {
  width: 65%; /* 設定合適的寬度，可依需求調整 */
  max-width: 500px; /* 限制最大寬度 */
  margin: 0 auto; /* 水平置中 */
  text-align: left; /* 內容靠左對齊 */
}

/* 修改列表樣式，靠左對齊 */
.aboutIntroTwo-left-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 35px; /* 移除自動置中的左右邊距設置 */
  width: 100%;
  text-align: left; /* 確保文字靠左 */
}

.aboutIntroTwo-left-content li {
  font-size:20px;
  font-weight: bold;
  max-width: 500px;
  margin: 0 0 15px 0;
  padding: 0;
  text-align: left; /* 確保文字靠左 */
  display: block;
}

  .aboutIntroTwo-consult-button {
    display: inline-block;
    width: 185px;
    height: 50px;
    line-height: 50px;
    border: none;
    color: #fff;
    font-family: "Leelawadee UI", sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    background-color: #82aea9;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    margin-left: 30px; /* 增加左側邊距 */
    text-align: center; /* 文字置中 */
  }
  
  .aboutIntroTwo-consult-button:hover {
    background-color: white;
    color: #808080;
  }
  
  /* 右側內容區塊 */
  .aboutIntroTwo-right-content {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
    padding: 40px 40px 40px 80px; /* 增加左側填充，使內容更居中 */
    box-sizing: border-box;
    color: white;
  }
  
  .aboutIntroTwo-right-content p {
    font-size: 38px;
    font-weight: 600;
    /*margin: 10px 0; */
    letter-spacing: 2px;
    text-align: left; 
  }
  
  @media (max-width: 1024px) {
    .aboutIntroTwo-scent-marketing {
      height: auto;
      flex-wrap: nowrap;
      margin: auto;
    }
    
    .aboutIntroTwo-left-content,
    .aboutIntroTwo-right-content {
      width: 100%;
      padding: 40px 20px;
    }
    
    .aboutIntroTwo-right-content {
      margin-top: 55px;
    }

    .aboutIntroTwo-left-row{
      width: 90%;
    }
  }
  
  @media (max-width: 768px) {
    .aboutIntroTwo-left-content h2 {
      font-size: 24px;
    }
    
    .aboutIntroTwo-left-content li {
      font-size: 20px;
      font-weight: bold;
      width: 100% ; 
      max-width: none; /* 移除最大寬度限制 */

    }

    .aboutIntroTwo-right-content p {
      text-align: center ; /* 覆蓋文字的左對齊設定 */
      width: 100% ; /* 確保段落寬度為100% */
      font-size: 1.5rem ;
    }
    
    .aboutIntroTwo-right-content p:nth-child(2) {
      font-size: 1.5rem;
    }
  }
  @media (max-width: 430px) {
    .aboutIntroTwo-scent-marketing {
      flex-wrap: wrap;
    
    }  
    .aboutIntroTwo-right-content{
      margin-top: 0;
      margin-bottom: 20px;
    }
    .aboutIntroTwo-left-content,
    .aboutIntroTwo-right-content{
    padding: 30px 20px;
    background-color: rgba(0, 0, 0, 0.4); /* 半透明黑色背景 */
    }   
    .aboutIntroTwo-consult-button{
      margin-left: 75px; /* 增加左側邊距 */;
    }
  }

  /* end aboutIntroTwo */

  /* aboutIntroThree */

.aboutIntroThree-essential-oil-section {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 78px 184px;
  display: flex;
  position: relative;
  background-color: #fff;
}

.aboutIntroThree-content-container {
  width: 410px;
  margin-left: -3px;
}

.aboutIntroThree-section-heading {
  color: #0b2b3e;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 3.8px;
  margin-bottom: 16px;
}

.aboutIntroThree-description-text {
  color: #0b2b3e;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 1.6px;
}

.aboutIntroThree-divider {
  width: 410px;
  height: 1px;
  margin: 48px 0;
  background-color: #000;
  border: none;
}

.aboutIntroThree-image-container {
  position: relative;
  margin-left: 235px;
}

.aboutIntroThree-bottle-image {
  width: 431px;
  height: 610px;
  border-radius: 20px;
  object-fit: cover;
  margin-left: 13px;

}

.aboutIntroThree-bottle-image  img {
  width: 431px;
  height: 610px;
  border-radius: 20px;
  object-fit: cover;
}

.aboutIntroThree-oil-bottles {
  position: absolute;
  left: -166px;
  top: 280px;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.aboutIntroThree-oil-bottles img {
  width: 300px;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .aboutIntroThree-essential-oil-section {
    max-width: 1024px;
    padding: 40px;
    flex-direction: column;
  }

  .aboutIntroThree-content-container {
    width: 100%;
  }

  .aboutIntroThree-divider {
    width: 100%;
  }

  .aboutIntroThree-image-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }

  .aboutIntroThree-oil-bottles {
    position: absolute;
    left: 200px;
    top: 280px;
    transform: none; 
    z-index: 2;
    width: 250px; 
    height: 250px;
  }
  
  .aboutIntroThree-bottle-image {
    position: relative;
    z-index: 1;
    margin: 0 auto; /* 確保主圖片居中 */
  }
}

@media (max-width: 768px) {

  .aboutIntroThree-bottle-image {
    margin:0;
  }

  .aboutIntroThree-bottle-image img {
    width: 100%;
    max-width: 100%;
    height: auto !important;  /* 讓高度根據寬度比例自動調整 */
    max-height: 450px !important; /* 限制最大高度，可以根據需要調整 */
    object-fit: cover;
    border-radius: 15px;
  }

  .aboutIntroThree-oil-bottles {
    border-radius: 20px ;
    overflow: hidden ;
  }
  
  .aboutIntroThree-oil-bottles img {
    max-width: 100%;
    border-radius: 20px ;
    -webkit-border-radius: 20px ; 
    height: auto ;
    max-height: 300px ;
    overflow: hidden; 
  }

  .aboutIntroThree-section-heading {
    font-size: 28px;
    letter-spacing: 2.8px;
  }

  .aboutIntroThree-description-text {
    font-size: 14px;
    letter-spacing: 1.4px;
  }

  .aboutIntroThree-divider {
    margin: 30px 0;
  }
}
  
@media (max-width: 430px) {
  .aboutIntroThree-bottle-image{
    width: 80%;
    height: auto;
  }
  .aboutIntroThree-oil-bottles img{
    display: none;
  }
}



/*end aboutIntroThree */



/* aboutIntroFour */

.aboutIntrofour-section {
  width: 100%;
  padding: 0 0 10px 0;
  background-color: #fff;
}

.aboutIntrofour-content-wrapper {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.aboutIntrofour-title {
  font-size: 38px;
  color: #0b2b3e;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 3.8px;
  margin-bottom: 24px;
}

.aboutIntrofour-description {
  font-size: 18px;
  color: #0b2b3e;
  line-height: 160%;
  font-weight: 600;
  letter-spacing: 1.6px;
  margin-bottom: 24px;
}

.aboutIntrofour-main-image {
  width: 100%;
  height: 310px;

}

.aboutIntrofour-main-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .aboutIntrofour-main-image {
    height: auto; /* 自動調整高度 */
    
  }
}

/* aboutIntrofour-image-grid 相關樣式 */
.aboutIntrofour-image-grid {
  width: 100%;
  height: 335px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 三個等寬列 */
  gap: 6px; /* 網格間隔 */
  margin-top: 12px;
  background-color: transparent;
}

/* 三個網格區塊的共同樣式 */
.aboutIntrofour-grid-one,
.aboutIntrofour-grid-two,
.aboutIntrofour-grid-three {
  padding: 3px; /* 內部間距 */
  height: 100%;
}

/* 圖片樣式 */
.aboutIntrofour-grid-one img,
.aboutIntrofour-grid-two img,
.aboutIntrofour-grid-three img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 確保圖片填滿容器並維持比例 */
  object-fit: cover; /* 確保圖片填滿容器並維持比例 */
  display: block; /* 移除圖片底部間隙 */
}

.aboutIntrofour-carousel{
  display: none; /* 預設隱藏 */
}

@media (max-width: 1024px) {
  .aboutIntrofour-title {
    font-size: 32px;
  }
 
  .aboutIntrofour-image-grid {
    height: auto;
    grid-template-columns: repeat(2, 1fr); /* 平板上改為兩列 */
  }

  .aboutIntrofour-grid-three {
    grid-column: span 2; /* 讓第三個圖片橫跨兩列 */
  }
  
  .aboutIntrofour-grid-image {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .aboutIntrofour-title {
    font-size: 28px;
  }
  
  .aboutIntrofour-image-grid {
    grid-template-columns: 1fr; /* 手機上改為單列 */
    gap: 12px; /* 增加間隔提高可讀性 */
  }

  .aboutIntrofour-grid-one,
  .aboutIntrofour-grid-two,
  .aboutIntrofour-grid-three {
    grid-column: span 1; /* 所有元素都是單列 */
  }
  
  .aboutIntrofour-grid-image {
    grid-column: span 1;
  }
}

/*end aboutIntroFour */
.aboutIntrofour-carousel-wrapper {
  position: relative;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}
.carousel-button.prev {
  left: 8px;
}
.carousel-button.next {
  right: 8px;
}

/* 手機版才顯示按鈕（可選） */
@media (max-width: 430px) {
  .carousel-button {
    display: block;
  }
}
@media (min-width: 431px) {
  .carousel-button {
    display: none;
  }
}

@media screen and (max-width: 430px) {
  /* 隱藏原本 Grid */
  .aboutIntrofour-image-grid,
  .aboutIntrofour-main-image {
    display: none;
  }

  .imageMain {
    display: none;
  }

  /* 顯示 Carousel */
  .aboutIntrofour-carousel {
    height: 376px; /* 設定 Carousel 高度 */
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* iOS 平滑滾動 */
    gap: 12px;                         /* 卡片間距 */
    padding-bottom: 8px;               /* 避免最後一張被遮住 */
  }
  /* 每一項都佔滿 100% 視窗寬度，滑動時「吸附」靠左對齊 */
  .aboutIntrofour-carousel-item {
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
    border-radius: 20px;
    overflow: hidden;
  }
 
  .aboutIntrofour-carousel-item img{
    margin-top: 0!important;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .aboutIntrofour-carousel-item
  /* 隱藏滾動條（可選） */
  .aboutIntrofour-carousel::-webkit-scrollbar {
    display: none;
  }
  .aboutIntrofour-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
/* aboutIntroFive */

.aboutIntrofive-experience-section {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  height: 679px;
  display: flex;
  justify-content: center;
  padding: 75px 40px;
  box-sizing: border-box;
  background-color: #fff;
}

.aboutIntrofive-content-container {
  width: 378px;
  padding-top: 132px;
}

.aboutIntrofive-experience-heading {
  color: #0b2b3e;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 3.8px;
  margin-bottom: 29px;
}

.aboutIntrofive-experience-description {
  color: #0b2b3e;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 1.6px;
  margin-right: 30px;
}

.aboutIntrofive-team-image img {
  width: 669px;
  height: 529px;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .aboutIntrofive-experience-section {
    max-width: 1024px;
    padding: 50px;
    flex-direction: column;
    height: auto;
    align-items: center;
  }

  .aboutIntrofive-content-container {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 50px;
  }

  .aboutIntrofive-experience-description {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .aboutIntrofive-team-image {
    width: 100%;
    height: auto;
    max-width: 669px;
  }
}

@media (max-width: 768px) {
  .aboutIntrofive-experience-section {
    max-width: 768px;
    padding: 20px;
  }

  .aboutIntrofive-experience-heading {
    font-size: 28px;
    letter-spacing: 2.8px;
  }

  .aboutIntrofive-experience-description {
    font-size: 14px;
    letter-spacing: 1.4px;
  }

  .aboutIntrofive-team-image img{
    width: 90%;
    height: auto;
    max-width: 100%;
    border-radius: 20px;
  }
 
}

/*end aboutIntroFive */


/* aboutIntrosix */

.aboutIntrosix-section-background {
  width: 100%;
  background-color: #f7f7f7;
  padding: 72px 0;
}

.aboutIntrosix-content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.aboutIntrosix-perfumers-heading {
  color: #0b2b3e;
  text-align: center;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 5.8px;
  margin-bottom: 40px;
}

.aboutIntrosix-perfumers-container {
  display: flex;
  justify-content: center;
  gap: 125px;
  flex-wrap: wrap;
}

.aboutIntrosix-perfumer-card {
  width: 423px;
}

.aboutIntrosix-perfumer-image {
  width: 100%;
  height: 504px;
  object-fit: cover;
  margin-bottom: 21px;
}

.aboutIntrosix-perfumer-name1, 
.aboutIntrosix-perfumer-name2 {
  margin-top: 15px;
}

.aboutIntrosix-perfumer-name {
  color: black;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 4px;
}

.aboutIntrosix-perfumer-title {
  color: black;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 5px;
  font-style: italic;
}

.aboutIntrosix-perfumer-description {
  color: #0b2b3e;
  text-align: justify;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 1.6px;
}

@media (max-width: 430px) {
  .aboutIntrofive-team-image img{
    width: 100%;
    height: auto;
    max-width: none; /* 移除最大寬度限制 */
    border-radius: 20px;
  }

}


@media (max-width: 1024px) {
  .aboutIntrosix-section-background {
    padding: 50px 0;
  }
  
  .aboutIntrosix-perfumers-heading {
    font-size: 42px;
    letter-spacing: 4.2px;
  }

  .aboutIntrosix-perfumers-container {
    gap: 60px;
  }

  .aboutIntrosix-perfumer-card {
    width: 100%;
    max-width: 423px;
  }
}

@media (max-width: 768px) {
  .aboutIntrosix-section-background {
    padding: 40px 0;
  }
  
  .aboutIntrosix-content-wrapper {
    padding: 0 20px;
  }
  
  .aboutIntrosix-perfumers-heading {
    font-size: 32px;
    letter-spacing: 3.2px;
    margin-bottom: 30px;
  }

  .aboutIntrosix-perfumers-container {
    gap: 40px;
  }

  .aboutIntrosix-perfumer-image {
    height: auto;
  }
}


/* aboutIntrosix end */




/* aboutIntrosev  */
.aboutIntrosev-partnership-container {
  border-radius: 0;
  width: 100%;
}

.aboutIntrosev-partnership-content {
  display: flex;
  width: 100%;
  padding: 70px 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 80px; */
}
/* 
.aboutIntrosev-partnership-header {
  display: flex;
   margin-left: 31px; 
  width: 100%;
  max-width: 1020px;
  flex-direction: column;
  align-items: center;
} */

/* .aboutIntrosev-partnership-header-wrapper {
  align-self: stretch;
} */

.aboutIntrosev-partnership-header-flex {
  display: flex;
  /* gap: 32px; */
  gap: 20px;
}


@media (max-width: 768px) {

  .aboutIntrosix-perfumer-name2,
  .aboutIntrosix-perfumer-title1 {
   margin-top: 5px;
  }


  .aboutIntrosev-partnership-content {
    padding: 40px 20px;
  }
  
  .aboutIntrosev-partners-heading {
    font-size: 32px;
    letter-spacing: 3.2px;
    
  }
  
  .producttt-info{
    margin-top: 5px;
  }

  /* 新增：iPhone 12 Pro 和其他手機版置中 */
  .aboutIntrosev-partnership-header {
    margin-left: 0;
    margin-right: 0;
    margin: 0 auto;
    width: 100%;
  }

  .aboutIntrosev-title-wrapper {
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    flex-direction: column;
    align-self: stretch;
    align-items: stretch;
    font-family: "Noto Sans TC", -apple-system, Roboto, Helvetica, sans-serif;
    color: rgba(11, 43, 62, 1);
    white-space: nowrap;
    text-align: center;
    line-height: 1.4;
    width: 50%;
    margin: 0 auto;
  }
}
.aboutIntrosev-brand-title {
  border-radius: 20px;
  border: 2px solid rgba(11, 43, 62, 1);
  padding: 5px 15px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin: 0;
}

.aboutIntrosev-brand-subtitle {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
  align-self: center;
  margin-top: 10px;
  margin-bottom: 0;
}

.aboutIntrosev-logo-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  /* width: 80%; */
  width: 60%;
  margin-left: 20px;
}

.aboutIntrosev-brand-logos {
  aspect-ratio: 5.52;
  object-fit: contain;
  object-position: center;
  width: 100%;
  flex-grow: 1;
}

.aboutIntrosev-partners-heading {
  color: rgba(11, 43, 62, 1);
  font-size: 58px;
  font-family: "Noto Sans TC", -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 5.8px;
  text-align: center;
  /* margin-top: 114px;*/
  margin-bottom: 40px; 
}
.image-overlay-wrapper{
  position: relative;
  width: 300px;
  height: 300px;
  display: inline-block;
  /* border-radius: 16px !important; */
}

.image-overlay-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px !important;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  text-align: center;
  color: #fff;
  /* 根據你的 design 加上字體、顏色等等 */
}
.overlay-text .overlay-text-numbers{
  font-size: 4rem;
  font-weight: 700;
  color: #fff;

}

.overlay-text .overlay-text-words{
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  /* margin-top: 10px; */
  line-height: 140%;
  letter-spacing: 1.5px;
}

.aboutIntrosev-title-wrapper {
  margin-top: 29px;
  white-space: initial;
}

@media (max-width: 1024px) {
  .aboutIntrosev-partnership-content {
    max-width: 100%;
    padding: 70px 20px;
  }
  
  .aboutIntrosev-partnership-header {
    max-width: 100%;
  }
  
  .aboutIntrosev-partnership-header-wrapper {
    max-width: 100%;
  }
  
 
  
  .aboutIntrosev-title-column {
    width: 100%;
  }

  .aboutIntrosev-brand-title {
    padding: 5px 20px;
    white-space: initial;
    text-align: center;
  }
  
  .aboutIntrosev-brand-subtitle{
    text-align: center;
  }
  .aboutIntrosev-logo-column {
    width: 100%;
    margin-left: 0;
  }
  
  .aboutIntrosev-brand-logos {
    max-width: 100%;
  }
  
  .aboutIntrosev-partners-heading {
    margin-top: 40px;
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .aboutIntrosev-partnership-content {
    padding: 40px 20px;
  }
  
  .aboutIntrosev-partners-heading {
    font-size: 32px;
    letter-spacing: 3.2px;
  }

  .aboutIntrosev-partnership-header-flex {
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 32px;
  }
}
@media (max-width: 430px) {
  
  .aboutIntrosev-partnership-content {
    padding: 20px;
    margin-bottom: 40px; 
  }
}
/* aboutIntrosev end  */