
    .apas-wrap img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .apas-grid-2 {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 30px;
      align-items: center;
    }

    .apas-grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 22px;
    }

    .apas-facts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
    }

    .apas-hero-img {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      margin-top: 18px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .apas-side-img img,
    .apas-joint-img img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }

    .apas-card {
      border: 1px solid #e8e8e8;
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
      transition: all 0.2s ease;
    }

    .apas-card:hover {
      box-shadow: 0 10px 24px rgba(0,0,0,0.06);
      transform: translateY(-2px);
    }

    .apas-card-img {
      background: #f8fafc;
      padding: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 220px;
      border-bottom: 1px solid #eee;
    }

    .apas-card-img img {
      max-height: 180px;
      width: auto;
      object-fit: contain;
    }

    .apas-card-body {
      padding: 20px;
    }

    .apas-card-body h3 {
      font-size: 21px;
      margin: 0 0 10px 0;
      color: #111;
      line-height: 1.4;
    }

    .apas-joint-img {
      margin: 18px 0 20px;
    }

    .apas-joint-img img {
      max-height: 460px;
      object-fit: cover;
      width: 100%;
    }

    @media (max-width: 768px) {
      .apas-grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      h1 {
        font-size: 30px !important;
      }

      h2 {
        font-size: 24px !important;
      }

      .apas-card-img {
        min-height: 180px;
      }

      .apas-card-img img {
        max-height: 150px;
      }
    }
  