body {
    background-color: #f2f2f2; /* 比原本灰淺少少，睇落舒服啲 */
  }
  
.page-title {
    text-align: center;
    padding: 80px 0;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    background-image: url('../apple_education/apple_education_image/land.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    z-index: -1;
}

/* Background image container for parallax effect */
.page-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../apple_education/apple_education_image/land.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 0.5s ease-out;
    transform: scale(1.1);
}

/* Scroll animation class that will be added via JavaScript */
.page-title.scrolled::after {
    transform: scale(1.2) translateY(-5%);
}

.content-container {
  max-width: 1400px; /* 由 1200 加大少少 */
    margin: 0 auto;
    padding: 20px;
    min-height: 400px; /* Ensures there's some space on the page */
}


/* 永續進度區塊 */
.sustainability-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border-radius: 18px; /* Increased from 15px to 18px */
    padding: 70px 120px; /* Further increased padding from 50px 100px to 70px 120px */
    margin: 60px auto; /* Further increased margin from 50px to 60px */
    max-width: 1600px; /* Further increased max-width from 1500px to 1600px */
    box-shadow: 0 6px 16px rgba(0,0,0,0.1); /* Enhanced shadow */
    flex-wrap: wrap;
  }
  
  .progress-left {
    flex: 1.4; /* Further increased flex from 1.2 to 1.4 */
    min-width: 360px; /* Further increased min-width from 320px to 360px */
    padding-right: 60px; /* Further increased padding from 50px to 60px */
  }
  
  .progress-left h2 {
    font-size: 32px; /* Increased from 26px to 32px */
    font-weight: 700;
    margin-bottom: 24px; /* Increased from 20px to 24px */
    color: #1d1d1f;
  }
  
  .progress-bar {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
  }
  
  .progress-fill {
    height: 100%;
    background: linear-gradient(
      to right,
      #00e676,  /* 亮綠 */
      #00c853,  /* 湖綠 */
      #1e88e5,  /* 天藍 */
      #007aff   /* 深藍 Apple 藍 */
    );
    border-radius: 6px 0 0 6px;
}

  
  .progress-percentage {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .progress-highlights {
    list-style: none;
    padding: 0;
  }
  
  .progress-highlights li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .progress-highlights i {
    color: #00a152;
    margin-right: 8px;
  }
  
  .progress-right {
    flex: 1;
    text-align: center;
  }
  
  .progress-right img {
    max-width: 300px;
    width: 100%;
    height: auto;
  }


  /* Sustainability Cards Section */
.sustainability-cards {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;           /* ❗改為 nowrap：唔俾佢自動掉落去第二行 */
  justify-content: center;
  margin: 60px auto;
  max-width: 1400px;
}

.s-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1 1 500px;
  max-width: 600px;
}

.s-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1d1d1f;
}

.s-list {
  list-style: none;
  padding-left: 0;
}

.s-list li {
  font-size: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #333;
}

.s-list li i {
  margin-right: 10px;
  font-size: 18px;
}

/* 色彩主題 */
.s-list.green i {
  color: #00c853; /* Apple-style 綠色 */
}

.s-list.blue i {
  color: #007aff; /* Apple-style 藍色 */
}


/* 圓形背景 icon 版本 */
.icon-list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-bottom: 16px;
  color: #333;
}

.icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.icon-wrapper i {
  font-size: 16px;
  color: #555;
}


/* ===== 展望未來與結語 Section ===== */
.future-outlook {
  background: linear-gradient(to right, #e9f8f0, #e7f0fa);
  padding: 60px 40px;
  border-radius: 20px;
  max-width: 1400px;
  margin: 60px auto;
  text-align: center;
}

.future-outlook h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.future-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.f-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.f-card i {
  font-size: 30px;
  margin-bottom: 12px;
}

.f-card h3 {
  font-size: 18px;
  font-weight: bold;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.f-card p {
  font-size: 14px;
  color: #444;
}

/* Icon Colors */
.icon-green {
  color: #00c853;
}
.icon-blue {
  color: #1e88e5;
}
.icon-purple {
  color: #8e24aa;
}

/* ===== Apple 永續連結按鈕 ===== */
.apple-link-section {
  text-align: center;
  margin: 40px 0 80px;
}

.apple-link-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  background: linear-gradient(to right, #00c853, #1e88e5);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apple-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}



/* Responsive */
@media screen and (max-width: 768px) {
  .sustainability-cards {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .s-card {
    max-width: 100%;
  }
}

  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .sustainability-progress {
      flex-direction: column;
      padding: 30px 20px;
    }
  
    .progress-left, .progress-right {
      padding: 0;
      text-align: center;
    }
  
    .progress-right {
      margin-top: 30px;
    }
  }
  
