body {
      font-family: Arial, Helvetica, sans-serif;
      background-color: #ffffff;
      color: #111;
      margin: 0;
      padding: 40px;
    }

    .header {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #000;
      padding-bottom: 10px;
      margin-bottom: 30px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      margin-bottom: 40px;
    }

    .grid img {
      width: 100%;
      height: auto;
      display: block;
      border: 1px solid #000;
    }

    .reflection {
      max-width: 900px;
      font-size: 16px;
      line-height: 1.6;
    }

    @media (max-width: 900px) {
      .grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }