
    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      margin: 0;
      padding: 20px;
      background-color: #f9f9f9;
    }
    h2 {
      color: #2c3e50;
      border-bottom: 2px solid #3498db;
      padding-bottom: 8px;
      margin-bottom: 20px;
    }
    p {
      font-size: 16px;
      color: #444;
      margin-bottom: 15px;
    }
    ul {
      list-style: none;
      padding-left: 0;
    }
    li {
      margin-bottom: 12px;
    }
    .highlight {
      font-weight: bold;
      color: #e67e22;
    }
    .section {
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 30px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .image-row {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 30px;
    }
    .image-row img {
      width: 300px;
      height: 300px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      object-fit: cover; /* Ensures images maintain aspect ratio */
    }
    @media (max-width: 768px) {
      .image-row img {
        width: 100%; /* Full width on mobile */
        height: auto; /* Maintain aspect ratio */
      }
    }
  