#jjj {
  display: flex;
  gap: 20px; 
  margin: 0 auto 20px auto; 
  padding: 0; 
  flex-wrap: wrap;
  justify-content: center;
}

.nutrition-container {
  gap: 20px;
  margin: auto;
  padding: 20px;
  max-width: 1000px;
}

.nutrition-container h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-size: 1.5em;
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.nutrition-table th,
.nutrition-table td {
  padding: 10px 15px;
  border: 1px solid #ccc;
  text-align: left;
  font-size: 0.95em;
}

.nutrition-table th {
  background-color: #f9f9f9;
  font-weight: normal;
  width: 50%;
}

.nutrition-table td {
  background-color: #fff;
}

body {
  background-color: #f1f1f1;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
}

.wrapper {
  flex: 1;
}

.ooo {
  padding: 20px;
  font-family: sans-serif;
}

.lan {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

h2 {
  font-family: sans-serif;
  font-size: 30px;
}

h5 {
  padding: 10px;
  font-family: sans-serif;
  color: dimgrey;
  font-size: 17px;
  font-weight: 80;
}

.bold {
  font-weight: bold;
  color: rgb(0, 0, 0);
  text-decoration: underline;
  text-decoration-color: darkorange;
  text-decoration-thickness: 3px;
}

.small {
  height: 150px;
  width: 150px;
}

#intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 60px 20px;
}

#dis {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin: 20px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#list {
  font-family: sans-serif;
  font-size: 20px;
  max-width: 600px;
  margin: auto;
}

#list h1 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

#list li {
  list-style: none;
  margin-bottom: 10px;
  font-weight: 400;
  color: #555;
}

/* Section Styles */
#choose {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.title-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.bar {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

hr {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 30px 0;
}

/* Footer */
.footer {
  width: 100%;
  background-color: dimgray;
  color: white;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  font-family: sans-serif;
}

/* ===================
   Responsive Tweaks
=================== */
@media screen and (max-width: 768px) {
  #list h1 {
    font-size: 28px;
  }

  #intro {
    flex-direction: column;
    text-align: center;
  }

  #dis {
    margin: 20px auto;
    width: 90%;
  }

  .nutrition-table th,
  .nutrition-table td {
    font-size: 0.85em;
    padding: 8px 10px;
  }

  .title-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  h2 {
    font-size: 24px;
  }

  #list {
    font-size: 18px;
    padding: 0 10px;
  }

  .small {
    width: 100px;
    height: 100px;
  }
}
