<style>
  .genesys-weekend-training {
    padding: 48px 24px;
    background: #ffffff;
    color: #172033;
    font-family: Arial, Helvetica, sans-serif;
  }

  .genesys-training-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid #e1e5ea;
    border-radius: 12px;
    background: #ffffff;
  }

  .genesys-training-header {
    max-width: 900px;
    margin-bottom: 34px;
  }

  .genesys-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #f0f4fa;
    color: #405675;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .genesys-training-header h2 {
    margin: 0 0 14px;
    color: #10183c;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
  }

  .genesys-training-header p {
    margin: 0;
    color: #4d5868;
    font-size: 17px;
    line-height: 1.7;
  }

  .genesys-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid #edf0f3;
    border-bottom: 1px solid #edf0f3;
  }

  .genesys-content-block h3 {
    margin: 0 0 18px;
    color: #172033;
    font-size: 24px;
  }

  .genesys-content-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .genesys-content-block li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 25px;
    color: #3f4855;
    font-size: 16px;
    line-height: 1.5;
  }

  .genesys-content-block li:last-child {
    margin-bottom: 0;
  }

  .genesys-content-block li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #66788d;
    font-weight: 700;
    content: "✓";
  }

  .genesys-schedule {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding: 22px 24px;
    border: 1px solid #e1e7ee;
    border-radius: 10px;
    background: #f7f9fb;
  }

  .genesys-schedule > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .schedule-label {
    color: #647184;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }

  .genesys-schedule strong {
    color: #172033;
    font-size: 17px;
  }

  .genesys-outline-button {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid #263d68;
    border-radius: 7px;
    background: #ffffff;
    color: #263d68;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .genesys-outline-button:hover {
    background: #263d68;
    color: #ffffff;
    text-decoration: none;
  }

  @media (max-width: 760px) {
    .genesys-weekend-training {
      padding: 30px 16px;
    }

    .genesys-training-container {
      padding: 24px 20px;
    }

    .genesys-content-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .genesys-schedule {
      align-items: flex-start;
      flex-direction: column;
    }

    .genesys-outline-button {
      width: 100%;
      box-sizing: border-box;
    }
  }
</style>