.about-main {
    color: #333;
    overflow: hidden;
}

.about-main .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

.about-main .relative {
    position: relative;
}

/* Animations Init */
.about-main .opacity-0 {
    opacity: 0;
}
.about-main .animate-on-scroll {
    transition: all 0.8s ease-out;
}
.about-hero .hero-image{
  display: none;  
}
.about-hero .about-title {
  font-size: 50px;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-top: 20px;
  line-height: 1.3;
}

.about-mission .about-title {
  font-size: 40px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 30px;
  position: relative;
  padding-top: 20px;
  line-height: 1.3;
}

.about-main .about-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 85px;
    height: 4px;
    background-color: #c9151e; /* Theme Red */
}

.about-hero {
  position: relative;
  background-image: url('../images/pc/about/banner2560.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  background-color: #d7d1c5;
}

.about-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 2;
}

.about-hero .hero-content {
  width: 100%;
  max-width: 610px;
  z-index: 2;
  padding-top: 40px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 100px;
  border-radius: 8px;
}

.about-hero .hero-content p {
  font-size: 22px;
  line-height: 1.8;
  color: #FFFFFF;
  text-align: justify;
  letter-spacing: 0.5px;
}

.about-mission {
    background-color: #ffffff;
    position: relative;
}

.about-mission .container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.about-mission .mission-content {
  width: 45%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-mission .mission-slogan {
    font-size: 24px;
    color: #c9151e;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.about-mission .mission-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    letter-spacing: 0.5px;
}

.about-mission .mission-image {
    width: 50%;
    text-align: center;
}

.about-mission .mission-image img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   Team Section
   ========================================= */
.about-team {
    background-color: #f2f2f2;
    padding: 100px 0 120px;
    text-align: center;
}

.about-team .team-main-title {
  font-size: 40px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 60px;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 20px;
}

.about-team .team-main-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 4px;
  background-color: #c9151e;
  bottom: 0px;
}

.about-team .team-sub-title {
  font-size: 28px;
  color: #1A1A1A;
  font-weight: 500;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  padding-top: 18px;
}

.about-team .team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.about-team .board-grid .team-item,
.about-team .advisor-grid .team-item {
    width: calc(33.333% - 30px);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.about-team .team-item:hover .team-img {
    transform: scale(1.05);
}

.about-team .team-item:hover .team-name,
.about-team .team-item:hover .team-title,
.about-team .team-item:hover .team-desc {
    transform: scale(1.1);
}

.about-team .team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.about-team .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-team .team-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: transform 0.3s ease;
}

.about-team .team-name span {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    display: block;
    margin-top: 5px;
}

.about-team .team-title {
    font-size: 16px;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.about-team .team-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.about-team .team-divider {
    width: 95%;
    height: 3px;
    background-color: #c30e2d; 
    margin: 40px auto 70px;
}

/* Responsive Design (RWD)*/
@media screen and (max-width: 1750px) {

  .about-hero {
    background-image: url('../images/pc/about/banner1920.jpg');
    min-height: 38vw;
    background-size: contain;
  }
  .about-main .about-title {
      font-size: 45px;
      margin-bottom: 20px;
  }
  .about-hero .hero-content p {
      font-size: 20px;
      line-height: 1.6;
  }
  
}

@media screen and (max-width: 1300px) {
  .about-main .about-title {
      font-size: 40px;
      margin-bottom: 10px;
  }
  .about-hero .hero-content p {
      font-size: 18px;
      line-height: 1.6;
  }
  .about-mission .mission-slogan {
      font-size: 22px;
  }
  .about-hero .hero-content {
      max-width: 500px;
      padding-top: 40px;
      padding-right: 20px;
      padding-left: 20px;
      padding-bottom: 80px;
  }
}

@media screen and (max-width: 991px) {
  .about-main .about-title {
      font-size: 29px;
      margin-bottom: 5px;
  }
  .about-hero .hero-content p {
      font-size: 16px;
      line-height: 1.5;
  }
  
  .about-hero .hero-content {
      max-width: 360px;
      padding-top: 20px;
      padding-right: 20px;
      padding-left: 20px;
      padding-bottom: 20px;
  }
  .about-mission .mission-image {
      margin-top: 50px;
  }

  .about-team .board-grid .team-item,
  .about-team .advisor-grid .team-item {
      width: calc(50% - 40px);
      max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .about-hero .hero-image{
    display: block;
  }
  .about-main .container {
      padding: 0 0;
  }
  .about-hero {
    background-image: url('');
    min-height: none;
    background-size: contain;
  }
  .about-hero .hero-content {
  max-width: none;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 50px;
  padding-bottom: 50px;
  }
  .about-mission {
    padding-top: 40px;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 40px;
  }
  .about-hero .hero-content p {
      font-size: 17px;
      line-height: 1.6;
  }
  
  .about-mission .mission-content p {
    font-size: 17px;
  }  
  .about-mission .mission-image {
    width: 100%;
    margin-top: 10px;
  }  
    .about-main .about-title {
        font-size: 28px;
    }
  .about-mission .mission-content {
    width: 100%;
  }
    
  .about-team .board-grid .team-item,
  .about-team .advisor-grid .team-item {
    width: 100%;
  }
  .about-team .team-img {
    width: 150px;
    height: 150px;
  }
  .about-team .team-divider {
    width: 85%;
  }
}

/* 英文版調整 */
.lang-en .about-hero .hero-content p {
  text-align: left;
}
.lang-en .about-mission .mission-content p {
  text-align: left;
}


