body {
      font-family: sans-serif;
      background-color: #f8f9fa;
      margin: 0;
      padding: 0;
      max-width: 100vw;
    }
    header {
      background-color: #f4c900;
      color: #003087;
      padding: 2rem;
      display: flex;
      align-items: center;
    }
    header img {
      height: 60px;
      margin-right: 1.5rem;
    }
    header h1 {
      margin: 0;
      font-size: 2rem;
    }
    header p {
      margin: 0.5rem 0 0;
      font-size: 1rem;
    }
    main {
      max-width: 80%;
      margin: 0 auto;
    }
    .section-divider {
      text-align: center;
      font-weight: bold;
      font-size: 1.2rem;
      padding: 2rem 1rem 1rem;
      color: #003087;
    }
    .grid-downloads {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      padding: 2rem;
    }
    .download-box {
      background: #fff;
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      text-align: center;
      position: relative;
    }
    .download-box::before {
      content: '';
      display: block;
      width: 64px;
      height: 64px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      margin: 0 auto 1rem;
    }
    .download-box:nth-child(1)::before {
      background-image: url('https://cdn-icons-png.flaticon.com/512/732/732225.png');
    }
    .download-box:nth-child(2)::before {
      background-image: url('https://cdn-icons-png.flaticon.com/512/888/888841.png');
    }
    .download-box:nth-child(3)::before {
      background-image: url('https://assets.ubuntu.com/v1/29985a98-ubuntu-logo32.png');
    }
    .download-box:nth-child(4)::before {
      background-image: url('https://cdn-icons-png.flaticon.com/512/518/518713.png');
    }
    .download-box:nth-child(5)::before {
      background-image: url('https://cdn-icons-png.flaticon.com/512/888/888879.png');
    }
    .download-box:nth-child(6)::before {
      background-image: url('https://cdn-icons-png.flaticon.com/512/888/888857.png');
    }
    .button {
      display: inline-block;
      background-color: #003087;
      color: #fff;
      padding: 0.5rem 1rem;
      text-decoration: none;
      border-radius: 6px;
      margin-top: 1rem;
    }
    .button:hover {
      background-color: #001e5f;
    }
    
    form input, form textarea {
      width: 100%;
      padding: 0.5rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    form button {
      background: #003087;
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 6px;
      cursor: pointer;
    }
    form button:hover {
      background: #001e5f;
    }
    footer {
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      color: #666;
    }
    .instructions, .form {
  max-width: 80%;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}
 .instruction-images {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin: 2rem auto;
      max-width: 80%;
      padding: 0;
    }

    .instruction-images div {
      flex: 0 0 auto;
      width: 350px;
      text-align: center;
    }

    .instruction-images img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .help-link {
      text-align: center;
      margin-top: 1rem;
    }