body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fffdee;
  color: #2e2e2e;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ——— Header ——— */
header {
  background: #fff7c2;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
header img {
  height: 60px;
  max-width: 100%;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav ul li a {
  text-decoration: none;
  color: #a56d00;
  font-weight: bold;
}

/* ——— Banner ——— */
.banner-row {
  text-align: center;
  padding: 30px 0;
  background: #fff9e6;
}
.banner-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.banner-wrapper img {
  width: 80%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ——— Layout ——— */
.main-container {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}

/* ——— Sidebar ——— */
.sidebar {
  background: #fff9d9;
  width: 260px;
  padding: 20px;
  border-left: 1px solid #eee5a8;
  box-shadow: inset 2px 0 6px rgba(0,0,0,0.03);
  flex-shrink: 0;
}
.sidebar h3 {
  color: #d4a100;
}
.download-box {
  background: #fff2aa;
  border: 1px solid #e0cd80;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
}
.download-box a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #ffc107;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}
.download-box a:hover {
  background: #ffdb4d;
}

/* ——— Main Content ——— */
main {
  flex: 1;
  padding: 40px 30px;
  background: #fffef4;
}
main h2 {
  color: #d4a100;
  margin-bottom: 10px;
}
main p {
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 20px;
}

/* ——— Footer ——— */
footer {
  text-align: center;
  padding: 20px;
  background: #fff7c2;
  color: #777;
  font-size: 14px;
}

/* ——— Additional Main Content Styling ——— */
main h3 {
  color: #a56d00;
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 18px;
}
main ul {
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
}
main ul li {
  margin-bottom: 8px;
}
.sys-req-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 16px;
}
.sys-req-table th {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 2px solid #eee5a8;
  color: #2e2e2e;
}
.sys-req-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #f9f4d2;
  color: #444;
}

/* ——— Responsive: Tablets ——— */
@media (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav ul {
    justify-content: flex-start;
    gap: 16px;
  }

  .main-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-left: none;
    border-top: 1px solid #eee5a8;
    margin-top: 20px;
  }

  main {
    padding: 30px 20px;
  }

  .banner-wrapper img {
    width: 90%;
  }
}

/* ——— Responsive: Mobile ——— */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .banner-row {
    padding: 20px 15px;
  }

  .banner-wrapper img {
    width: 100%;
  }

  .sidebar h3 {
    font-size: 20px;
  }

  .download-box a {
    width: 100%;
    max-width: 300px;
  }

  main {
    padding: 25px 15px;
  }

  main h2 {
    font-size: 22px;
  }

  main p {
    font-size: 15px;
  }

  footer {
    font-size: 13px;
    padding: 20px 15px;
  }
}
