body {
    background-color: #f2f2f2; /* 比原本灰淺少少，睇落舒服啲 */
  }
  
/* Page Title Container with Background Image */
.page-title-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    transition: background-position 0.3s ease-out;
}
  
.page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

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

/* 家長參與教育 Section */
.parent-involvement-section {
  background: linear-gradient(to bottom right, #f8f8fa, #ffffff);
  border-radius: 20px;
  margin: 40px auto;
  padding: 60px 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.parent-involvement-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #42a5f5, #2196f3, #1976d2);
}

.involvement-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 20px;
  text-align: center;
}

.section-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.involvement-highlights {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 30px;
}

.highlight-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  flex: 1;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.highlight-card img {
  width: 260px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 12px;
  object-fit: cover;
}

/* 特別為溝通圖示設計的樣式 - 比其他圖片更大，突出溝通的重要性 */
/* Special styling for the communication icon - larger than other images to emphasize the importance of communication */
.larger-image {
  width: 380px !important; /* 明顯大於標準圖片的 260px 寬度 */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* 平滑過渡效果 */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* 輕微陰影增加立體感 */
}

/* 滑鼠懸停時的互動效果 - 輕微放大並增強陰影 */
/* Interactive effect on hover - slight scale up and enhanced shadow */
.larger-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.highlight-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 15px;
}

.highlight-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .involvement-highlights {
    flex-wrap: wrap;
  }
  
  .highlight-card {
    flex: 1 1 calc(50% - 15px);
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .parent-involvement-section {
    padding: 40px 20px;
  }
  
  .highlight-card {
    flex: 1 1 100%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1.1rem;
  }
}

/* 家長指南資源 Section - 提供實用工具與教學資源 */
/* Parent Resource Guide Section - providing useful tools and educational resources */
.parent-resources-section {
  background: linear-gradient(145deg, #f0f5ff 0%, #e6f0ff 100%);
  border-radius: 30px;
  margin: 70px auto;
  padding: 70px 40px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

/* 裝飾元素 - 增加視覺層次感 */
/* Decorative elements - add visual depth */
.parent-resources-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.15) 0%, rgba(255, 149, 0, 0) 70%);
  border-radius: 50%;
}

.parent-resources-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, rgba(0, 122, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.resources-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* 資源網格 - 更現代的卡片布局 */
/* Resource grid - more modern card layout */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* 資源卡片設計 - 簡潔白色卡片帶有更大圖片 */
/* Resource card design - clean white cards with larger images */
.resource-card {
  background: #fff;
  border-radius: 24px;
  padding: 0;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* 卡片圖片容器 - 大型圖片展示 */
/* Card image container - large image display */
.resource-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resource-card:hover img {
  transform: scale(1.05);
}

/* 卡片內容區域 - 清晰的文字布局 */
/* Card content area - clean text layout */
.resource-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 20px 20px 10px;
  transition: color 0.3s ease;
}

.resource-card:hover h3 {
  color: #0066cc;
}

.resource-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
  padding: 0 20px 25px;
  margin: 0;
}

/* 資源區塊的響應式設計 - 優化各種屏幕尺寸 */
/* Responsive design for resources section - optimized for various screen sizes */
@media (max-width: 1100px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .resource-card img {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .parent-resources-section {
    padding: 50px 20px;
    margin: 40px auto;
  }
  
  .resource-card img {
    height: 200px;
  }
}

/* 安全與隱私保護 Section - 強調 Apple 對隱私的重視 */
/* Safety and Privacy Protection Section - emphasizing Apple's commitment to privacy */
.privacy-safety-section {
  background: linear-gradient(145deg, #f8f8fa 0%, #ffffff 100%);
  border-radius: 30px;
  margin: 70px auto;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* 裝飾元素 - 隱私保護的視覺象徵 */
/* Decorative elements - visual symbols of privacy protection */
.privacy-safety-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.08) 0%, rgba(0, 113, 227, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.privacy-safety-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(142, 142, 147, 0.08) 0%, rgba(142, 142, 147, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.privacy-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 15px 0;
  text-align: center;
}

.section-description {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #515154;
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

/* 隱私卡片 - 水平佈局的資訊卡 */
/* Privacy card - horizontally laid out information card */
.privacy-card {
  display: flex;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.privacy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* 隱私卡片圖示 - 左側圖示區域 */
/* Privacy card icon - left side icon area */
.privacy-card img {
  width: 240px;
  height: auto;
  padding: 50px;
  object-fit: contain;
  background: linear-gradient(145deg, #f5f5f7 0%, #e5e5ea 100%);
  transition: transform 0.5s ease;
}

.privacy-card:hover img {
  transform: scale(1.05);
}

/* 隱私內容區域 - 右側文字內容 */
/* Privacy content area - right side text content */
.privacy-content {
  flex: 1;
  padding: 50px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.privacy-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 25px 0;
  line-height: 1.3;
}

.privacy-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

/* 列表樣式 - 清晰的要點列表 */
/* List styling - clear bullet points */
.privacy-content ul {
  margin: 0 0 35px 0;
  padding: 0;
  list-style: none;
}

.privacy-content li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #515154;
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
}

.privacy-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #0071e3;
  border-radius: 50%;
}

/* 了解更多按鈕 - Apple 風格按鈕 */
/* Learn more button - Apple style button */
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  background: #0071e3;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 980px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: #0077ed;
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 113, 227, 0.3);
}

.learn-more-btn::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.learn-more-btn:hover::after {
  transform: translateX(4px);
}

/* 隱私區塊的響應式設計 */
/* Responsive design for privacy section */
@media (max-width: 1000px) {
  .privacy-card {
    flex-direction: column;
  }
  
  .privacy-card img {
    width: 100%;
    height: auto;
    padding: 40px;
  }
  
  .privacy-content {
    padding: 40px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .section-description {
    font-size: 1.2rem;
  }
  
  .privacy-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .privacy-safety-section {
    padding: 60px 25px;
    margin: 50px auto;
    border-radius: 25px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .privacy-card img {
    padding: 30px;
  }
  
  .privacy-content {
    padding: 30px;
  }
  
  .privacy-content h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .privacy-content p,
  .privacy-content li {
    font-size: 1rem;
  }
  
  .privacy-content ul {
    margin-bottom: 25px;
  }
  
  .privacy-content li {
    padding-left: 22px;
  }
  
  .privacy-content li::before {
    width: 10px;
    height: 10px;
    top: 8px;
  }
  
  .learn-more-btn {
    font-size: 1rem;
    padding: 10px 24px;
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .page-title-container {
    height: 200px;
    border-radius: 15px;
  }
  
  .page-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-title-container {
    height: 150px;
    border-radius: 10px;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
}
