@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: 36px;
  font-weight: bold;
  color: #b60000;
}

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

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

.nutrition-facts h2 {
  font-size: 30px;
  text-align: left;
  margin-bottom: 15px;
  font-weight: bold;
  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: 30px;
}

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

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

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

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

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

.footer h3 {
  font-size: 20px;
  font-weight: bold;
  color: #888;  
  font-style: italic;
}

.footer p {
  font-size: 16px;
  font-style: italic;
  color: #888; 
}

/* Page Footer Info */
#info {
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
  line-height: 1.6;
  color: #888;
  font-style: italic;  
}
