@charset "UTF-8";
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
}

#container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 20px;
  font-weight: normal;
  color: #000;
}

.header p {
  font-size: 20px;
  margin: 5px 0;
  font-weight: normal;
  color: #000;
}

.nutrition-facts {
  width: 45%;
  margin-top: 20px;
}

.nutrition-facts h2 {
  font-size: 20px;
  text-align: left;
  margin-bottom: 15px;
  font-weight: normal;
  color: #000;
}

.facts-note {
  font-size: 16px;
  margin-bottom: 15px;
  color: #000;
}

.facts-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.facts-item {
  font-size: 16px;
  padding: 10px;
  background-color: transparent; 
  border-radius: 8px;
  box-shadow: none; 
  font-weight: normal;
}

.ingredients {
  width: 45%;
  margin-top: 30px;
}

.ingredients h2 {
  font-size: 24px;
  text-align: left;
  margin-bottom: 15px;
  font-weight: normal;
  color: #000;
}

.ingredients p {
  font-size: 16px;
  line-height: 1.3;
  color: #555;
}

.footer {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}

.footer h3 {
  font-size: 20px;
  font-weight: norma;;
  color: #000;
}

#info {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-top: 40px;
  line-height: 1.3;
}
