
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0 5%;
      line-height: 1.6;
    }
    h1 {
      text-align: center;
      font-size: 2em;
      margin-top: 1em;
    }
    h2 {
      font-size: 1.5em;
      margin-top: 2em;
    }
    p {
      font-size: 1em;
      margin-top: 1em;
    }
    .poster {
      text-align: center;
      margin: 2em 0;
    }
    .poster img {
      max-width: 100%;
      height: auto;
    }
    .product-section {
      display: flex;
      flex-direction: column;
      gap: 4em;
    }
    .product-block {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 4em;
      flex-wrap: wrap;
    }
    .product-block:nth-child(even) {
      flex-direction: row-reverse;
    }
    .product-image, .product-text {
      flex: 1 1 300px;
     text-align: left;
    }
    .product-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    .contact-button {
      display: block;
      margin: 3em auto;
      padding: 0 2em;
      background-color: #007BFF;
      color: white;
      border: none;
      font-size: 1em;
      cursor: pointer;
      text-align: center;
      border-radius: 4px;
      text-decoration: none;
      width: fit-content;
    }

    @media (max-width: 90%) {
      .product-block {
        flex-direction: column !important;
        text-align: center;
      }
      .product-text {
        text-align: center;
      }
    }
  