    * {
      box-sizing: border-box;
    }


    .container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
    }

    .half {
      flex: 1 1 50%;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .image-side img {
      width: 100%;
      height: auto;
      max-width: 600px;
      margin: 0 auto;
      display: block;

      position: relative;
      z-index: 1;
    }

    .content-side {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .landing-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .landing-list {
      list-style-type: disc;
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .landing-list li {
      margin-bottom: 10px;
    }

    .classic-button {
      background-color: #b5179e;
      color: white;
      text-decoration: none;
      padding: 10px 20px;
      display: inline-block;
      border-radius: 4px;
      transition: background-color 0.3s ease;
      text-align: center;
      max-width: fit-content;
    }

    .classic-button:hover {
      background-color: #a02087;
    }

    .brand-link {
      text-decoration: none;
      color: inherit;
    }

    @media (max-width: 768px) {
      
    .content-side {
      order: 1;
    }
    .image-side {
      order: 2;
    }

    .half {
      flex: 1 1 100%;
    }

    .landing-title {
      font-size: 24px;
      text-align: center;
    }

    .landing-list {
      padding-left: 25px; /* More room for bullets on small screens */
    }

    .content-side {
      text-align: center;
      align-items: center;
    }

    .classic-button {
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
    }
  }

@media (max-width: 480px) {
  .landing-title {
    font-size: 20px;
  }

  .landing-list li {
    margin-bottom: 8px;
  }

  .half {
    padding: 10px;
  }
}