 body {
      font-family: "Noto Sans TC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      line-height: 1.6;
      color: #333;
    }

    /* Hero 區塊 */
    .hero-section {
      background: url('/assets/images/plandetail.png') center/cover no-repeat;
      color: white;
      padding: 10rem 20px 0rem;
      text-align: center;
      position: relative;
    }
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
    }
    .hero-content {
      position: relative;
      z-index: 1;
    }
    .hero-badge {
      display: inline-block;
      border: 1px solid white;
      border-radius: 20px;
      padding: 4px 16px;
      font-size: 0.9rem;
      margin-bottom: 16px;
    }
    .hero-title {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 16px;
    }
    .hero-desc {
      max-width: 700px;
      margin: 0 auto 5rem;
      font-size: 0.95rem;
    }
    .hero-buttons{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-buttons .btn {
      margin: 0 8px;
      border-radius: 0.5rem;
      padding: 10px 24px;
      font-weight: 500;
      font-size: 0.95rem;
      
      position: relative;
      z-index: 1000;
    }
    .btn-primary-custom {
      background-color: #ff2e17;
      color: white;
      border: none;
    }
    .btn-outline-custom {
        border: 1px solid #FF2200;
      background-color: white;
      color: #ff2e17;
    }
    .hero-images {
        width: 100%;
        height: 10rem;
      display: flex;
      justify-content: center;
      margin-top: -7rem;
      position: relative;
    }
    .hero-images img {
      width: 50%;
       height: 10rem;
      position: absolute;
      z-index: -1;
    }
    .hero-images img:first-child {
      border-radius: 16px 0 0 16px;
    }
    .hero-images img:last-child {
      border-radius: 0 16px 16px 0;
    }

    /* 通用區塊 */
    .section {
      padding: 60px 20px;
      text-align: center;
    }
    .section-icon {
      width: 3rem;
      height: 3rem;
      margin: 0 auto 0.1rem;
    }
    .section-icon img{
        width: 2.5rem;
        height: 2.5rem;
    }
    .section-subtitle {
      font-size: 0.9rem;
      color: #616161;
      margin-bottom: 8px;
    }
    .section-title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 16px;
    }
    .section-desc {
      max-width: 700px;
      margin: 0 auto;
      font-size: 0.9rem;
      color: #666;
      line-height: 1.7;
    }

    /* 解決方案區塊 */
    .solution-section {
      padding: 60px 20px;
    }
    .solution-header .section-subtitle {
      color: #ff2e17;
    }
    .case-section .section-subtitle {
      color: #ff2e17;
    }
    .solution-card {
      display: flex;
      align-items: center;
      margin-bottom: 40px;
      background: #fafafa;
    }
    .solution-card img {
      width: 50%;
      height: 300px;
      object-fit: cover;
    }
    .solution-card-content {
      padding: 30px;
      width: 50%;
      text-align: left;
    }
    .solution-card-content h3 {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 16px;
    }
    .solution-card-content p {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.7;
    }

    /* 引用區塊 */
    .quote-section {
      padding: 60px 20px;
      display: flex;
      justify-content: space-between;
    }
    .quote-icon {
      width: 3rem;
      color: #ccc;
    }
    .quote-icon img{
        width: 2.5rem;
        height: 2.5rem;
    }
    .quote-section .quote-icon:last-child{
        display: flex;
        align-items: flex-end;
    }
    .quote-text {
      font-size: 1.2rem;
      font-weight: 500;
      max-width: 800px;
      margin: 1rem auto;
      color: #0D0D0D;
    }

    /* 案例區塊 */
    .case-section {
      padding: 60px 20px;
    }
    .case-card {
      max-width: 1000px;
      margin: 0 auto;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      border-radius: 4px;
      overflow: hidden;
    }
    .case-card-header {
      padding: 16px;
      background: #f8f9fa;
      font-size: 1.1rem;
      font-weight: bold;
      text-align: left;
    }
    .case-card img {
      width: 100%;
      height: 350px;
      object-fit: cover;
    }

    /* 響應式適配 */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 1.5rem;
      }
      .hero-images {
        flex-direction: column;
        align-items: center;
      }
      .hero-images img {
        width: 90%;
        max-width: 350px;
        height: 140px;
      }
      .hero-images img:first-child {
        border-radius: 16px 16px 0 0;
      }
      .hero-images img:last-child {
        border-radius: 0 0 16px 16px;
      }
      .solution-card {
        flex-direction: column;
      }
    
      .solution-card img {
        width: 100%;
        height: 220px;
      }
      .solution-card-content {
        width: 100%;
        padding: 20px;
      }
      .quote-text {
        font-size: 1rem;
      }
      .hero-desc{
        margin-bottom: 1rem;
      }
      .hero-images{
        height: 9rem;
      }
      .hero-buttons{
        width: 100%;
        height: 7rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 2rem;
      }
      .hero-buttons a{
        width: 60%;
        margin-top: 0.5rem !important;
      }
    }