 /* Surat Keterangan TOEIC Section */
      .surat-keterangan {
        background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
      }

      .sk-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
      }

      .sk-card-header {
        background: linear-gradient(135deg, #1e3a8a 0%, #2d5bff 100%);
        padding: 28px 36px;
        display: flex;
        align-items: center;
        gap: 16px;
      }

      .sk-card-header-icon {
        width: 52px;
        height: 52px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        flex-shrink: 0;
      }

      .sk-card-header h3 {
        font-size: 20px;
        font-weight: 700;
        color: white;
        line-height: 1.3;
      }

      .sk-card-header p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.75);
        margin-top: 4px;
      }

      .sk-steps {
        padding: 36px;
        display: flex;
        flex-direction: column;
        gap: 0;
      }

      .sk-step {
        display: flex;
        gap: 20px;
        position: relative;
      }

      .sk-step:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 21px;
        top: 52px;
        bottom: -10px;
        width: 2px;
        background: linear-gradient(
          180deg,
          #2d5bff 0%,
          rgba(45, 91, 255, 0.1) 100%
        );
      }

      .sk-step-number {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #2d5bff 0%, #1e3a8a 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 16px;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(45, 91, 255, 0.3);
        position: relative;
        z-index: 1;
      }

      .sk-step-content {
        padding-bottom: 30px;
        flex: 1;
      }

      .sk-step:last-child .sk-step-content {
        padding-bottom: 0;
      }

      .sk-step-content p {
        font-size: 15px;
        color: #475569;
        line-height: 1.75;
        margin-top: 8px;
      }

      .sk-step-content strong {
        color: #1e3a8a;
      }

      .sk-link-box {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 14px;
        padding: 12px 20px;
        background: rgba(45, 91, 255, 0.06);
        border: 1.5px solid rgba(45, 91, 255, 0.2);
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s;
      }

      .sk-link-box:hover {
        background: rgba(45, 91, 255, 0.12);
        border-color: #2d5bff;
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(45, 91, 255, 0.15);
      }

      .sk-link-box span {
        font-size: 14px;
        font-weight: 600;
        color: #2d5bff;
      }

      .sk-link-box .sk-link-icon {
        font-size: 18px;
      }

      .sk-note {
        margin: 0 36px 36px;
        padding: 16px 20px;
        background: rgba(255, 107, 53, 0.06);
        border-left: 4px solid #ff6b35;
        border-radius: 0 10px 10px 0;
        font-size: 14px;
        color: #64748b;
        line-height: 1.6;
      }

      .sk-note strong {
        color: #ff6b35;
      }
      
      @media (max-width: 768px) {
.surat-keterangan .container {
    padding: 0;
  }

  .sk-card {
    border-radius: 16px;
  }

  /* Header */
  .sk-card-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
  }

  .sk-card-header-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .sk-card-header h3 {
    font-size: 18px;
  }

  .sk-card-header p {
    font-size: 13px;
  }

  /* Steps container */
  .sk-steps {
    padding: 20px;
  }

  /* Step layout */
  .sk-step {
    gap: 14px;
  }

  /* HILANGKAN GARIS VERTIKAL */
  .sk-step::after {
    display: none;
  }

  /* Nomor step */
  .sk-step-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* Konten step */
  .sk-step-content {
    padding-bottom: 20px;
  }

  .sk-step-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Link download */
  .sk-link-box {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 14px;
  }

  .sk-link-box span {
    font-size: 13px;
    word-break: break-word;
  }
      }