
  body {
    font-family: "Open Sans", sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  .container {
    width: 80%;
    margin: auto;
    padding: 20px;
  }
  .section {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }
  .section:last-child {
    border-bottom: none;
  }
  .section img {
    flex: 1;
    max-width: 100%;
    border-radius: 8px;
  }
  .text {
    flex: 2;
    margin-left: 20px;
  }
  .text h2 {
    color: #444;
    font-size: 24px;
  }
  @media(max-width: 768px) {
    .section {
      flex-direction: column;
    }
    .text {
      margin-left: 0;
    }
  }
