    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: Arial, Helvetica, sans-serif;
    }

    body {
      background: #f4f4f4;
    }

    .expect-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 60px 30px;
      background: #f4f4f4;
      display: flex;
      gap: 40px;
      align-items: flex-start;
    }

    .expect-text {
      flex: 1;
    }

    .expect-kicker {
      color: #e36a32; /* orange */
      font-size: 18px;
      margin-bottom: 12px;
    }

    .expect-title {
      font-size: 52px;
      line-height: 1.1;
      font-weight: 700;
      color: #333;
      margin-bottom: 24px;
    }

    .expect-body {
      font-size: 18px;
      line-height: 1.7;
      color: #444;
      margin-bottom: 30px;
    }

    .expect-list {
      list-style: none;
      font-size: 18px;
      color: #555;
    }

    .expect-list li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .expect-icon {
      width: 22px;
      text-align: center;
      font-size: 18px;
    }

    .expect-video {
      flex: 1;
    }

    .expect-video iframe {
      width: 100%;
      height: 340px;
      border: none;
    }

    @media (max-width: 900px) {
      .expect-section {
        flex-direction: column;
      }

      .expect-title {
        font-size: 38px;
      }

      .expect-video iframe {
        height: 260px;
      }
    }