/* ===== Page-specific styles ===== */

    /* Page Header */
    .page-header {
      background-color: #F5FAF7;
      padding-top: 50px;
      padding-bottom: 50px;
      text-align: center;
    }

    .breadcrumb-shepody {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      font-size: 0.9rem;
      color: #5B6A63;
      flex-wrap: wrap;
    }

    .breadcrumb-shepody a {
      color: #5B6A63;
      transition: color 0.3s ease;
    }

    .breadcrumb-shepody a:hover {
      color: #27B97A;
    }

    .breadcrumb-shepody .sep {
      color: #DDEEE6;
    }

    .breadcrumb-shepody .current {
      color: #27B97A;
      font-weight: 500;
    }

    .page-header h1 {
      font-size: 2.5rem;
      font-weight: 800;
      color: #17251F;
      margin-bottom: 12px;
    }

    .page-header-subtitle {
      font-size: 1rem;
      color: #5B6A63;
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.7;
    }

    @media (max-width: 767.98px) {
      .page-header h1 {
        font-size: 2rem;
      }
    }

    /* Company Intro */
    .company-intro {
      background-color: #FFFFFF;
      padding: 60px 24px;
    }

    .company-intro h3 {
      font-size: 1.75rem;
      font-weight: 700;
      color: #17251F;
      margin-bottom: 20px;
    }

    .company-intro p {
      font-size: 0.85rem;
      color: #5B6A63;
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .company-intro-img-placeholder {
      width: 100%;
      height: 350px;
      background-color: #e8e8e8;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #999;
      font-size: 1rem;
    }

    .company-intro-img {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      background-color: #e8e8e8;
    }

    .company-intro-img img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      display: block;
    }

    /* Manufacturing Capacity */
    .capacity-section {
      background-color: #F5FAF7;
      padding: 60px 24px;
    }

    .capacity-item {
      text-align: center;
      padding: 20px 15px;
    }

    .capacity-icon-wrap {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background-color: #27B97A;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }

    .capacity-icon-wrap i {
      font-size: 1.6rem;
      color: #FFFFFF;
    }

    .capacity-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #17251F;
      margin-bottom: 10px;
    }

    .capacity-desc {
      font-size: 0.9rem;
      color: #5B6A63;
      line-height: 1.6;
    }

    /* Service Process */
    .process-section {
      background-color: #FFFFFF;
      padding: 60px 24px;
    }

    .process-flow {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 0;
      max-width: 1000px;
      margin: 0 auto;
    }

    .process-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex: 0 0 auto;
    }

    .process-node {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #27B97A;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .process-title {
      font-size: 1rem;
      font-weight: 700;
      color: #17251F;
      margin-bottom: 6px;
    }

    .process-desc {
      font-size: 0.85rem;
      color: #5B6A63;
      line-height: 1.5;
      max-width: 140px;
    }

    .process-arrow {
      color: #27B97A;
      font-size: 1.3rem;
      font-weight: 700;
      padding: 10px 8px 0;
      flex-shrink: 0;
    }

    @media (max-width: 767.98px) {
      .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 30px;
      }

      .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 18px;
        width: 100%;
        max-width: 320px;
      }

      .process-node {
        margin-bottom: 0;
        flex-shrink: 0;
      }

      .process-step-body {
        flex: 1;
      }

      .process-title {
        margin-bottom: 4px;
      }

      .process-desc {
        max-width: none;
      }

      .process-arrow {
        display: none;
      }
    }

    /* Export Markets */
    .markets-section {
      background-color: #F5FAF7;
      padding: 60px 24px;
    }

    .markets-flex {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .market-card {
      background-color: #FFFFFF;
      border-radius: 10px;
      border: 1px solid #DDEEE6;
      padding: 16px 24px;
      text-align: center;
      min-width: 140px;
      transition: all 0.3s ease;
    }

    .market-card:hover {
      border-color: #27B97A;
      box-shadow: 0 4px 16px rgba(39, 185, 122, 0.12);
      transform: translateY(-3px);
    }

    .market-icon {
      font-size: 2.2rem;
      margin-bottom: 8px;
    }

    .market-name {
      font-size: 1rem;
      font-weight: 600;
      color: #17251F;
    }

    /* CTA Banner */
    .cta-banner {
      background-color: #27B97A;
      padding: 80px 24px;
      text-align: center;
    }

    .cta-banner h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 14px;
    }

    .cta-banner-subtitle {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 35px;
    }

    .cta-banner-buttons {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    @media (max-width: 767.98px) {
      .cta-banner h2 {
        font-size: 1.6rem;
      }

      .cta-banner-buttons {
        flex-direction: column;
        align-items: center;
      }

      .cta-banner-buttons .btn-cta-white,
      .cta-banner-buttons .btn-cta-outline-white {
        width: 100%;
        max-width: 320px;
        justify-content: center;
      }
    }
