    .image-section {
      margin: 2rem 0;
    }
    .image-section-content {
      width: 100%;
      max-width: var(--bwj-content-width);
      margin: 0 auto;
      padding: 0 2.5rem;
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }
    
    .image-section-content > div {
      flex-grow: 4;
    }
    .image-section-content > img {
      flex-grow: 6;
      display: block;
      border-radius: 1rem;
      overflow: hidden;
      min-width: calc(60% - 0.75rem);
    }
    
    @media screen and (max-width: 1025px) {
      .image-section-content {
        flex-direction: column;
      }
      .image-section.left-side-under .image-section-content {
        flex-direction: column-reverse;
      }
      .image-section-content > div {
        flex-grow: 1;
        width: 100%;
      }
      .image-section-content > img {
        flex-grow: 1;
        width: 100%;
      }
    }

    .image-section-content h2 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.2;
      margin: 0;
      padding: 0;
      margin-bottom: 2.5rem;
    }
    .image-section-content p {
      font-size: 1.2rem;
      font-weight: 500;
      line-height: 1.8rem;
      padding: 0;
      margin: 1.8rem 0;
    }

    .image-section-content .button-container {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: 2rem;
    }

    .image-section-content .footnote {
      font-weight: 400;
      font-size: 0.75rem;
      margin: 0;
    }
