body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 30px;
}

.hero {
  background-color: #3498db;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #2ecc71;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 30px;
}

.cta-button:hover {
  background-color: #27ae60;
}

.faq-link {
  display: inline-block;
  color: white;
  text-decoration: none;
  margin-left: 20px;
  padding: 10px 15px;
  border: 2px solid white;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.faq-link:hover {
  background-color: white;
  color: #3498db;
}

.faq-link2 {
  color: #2c3e50;
  font-weight: bold;
  text-decoration: none;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.dish-box {
  background-color: #fff;
  border: 2px solid #3498db;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.dish-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dish-box.selected {
  background-color: #3498db;
  color: #fff;
}

.dish-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.dish-name {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

#submit-button {
  display: block;
  width: 200px;
  margin: 20px auto;
  padding: 12px;
  font-size: 18px;
  background-color: #2ecc71;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#submit-button:hover {
  background-color: #27ae60;
}

#loading {
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
  color: #3498db;
}

.shopping-list {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.shopping-list-section {
  margin-bottom: 30px;
  padding-left: 0;  /* Ensure no left padding on sections */
}

.shopping-list h2 {
  color: #2c3e50;
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
  text-align: left;
}

.shopping-list h3 {
  color: #3498db;
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.shopping-list h4 {
  color: #2c3e50;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.shopping-list ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.shopping-list ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.shopping-list ol li {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

.shopping-list ol li strong {
  color: #2c3e50;
  font-size: 17px;
}

.shopping-list li {
  margin-bottom: 5px;
  font-size: 16px;
}

.shopping-list p {
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: 1.5;
}

.shopping-list .summary-list {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.shopping-list .summary-list ul {
  margin-bottom: 20px;
  break-inside: avoid;
}

.shopping-list .dish-section {
  background-color: #f9f9f9;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.shopping-list .recipe-step {
  background-color: #ffffff;
  padding: 10px;
  margin-bottom: 10px;
  border-left: 3px solid #3498db;
}

.shopping-list .recipe-step strong {
  color: #3498db;
}

.faq-section {
  margin-top: 0px;
  padding: 0px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  background-color: #e9ecef;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding: 15px;
  background-color: #ffffff;
  border-radius: 0 0 5px 5px;
}

/* ... (keep all existing styles) ... */

.email-form {
    text-align: center;
    margin: 20px 0;
}

#email-input {
    width: 60%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #3498db;
    border-radius: 5px;
    margin-right: 10px;
}

#email-submit {
    padding: 12px 24px;
    font-size: 16px;
}

.email-sent {
    text-align: center;
    font-size: 18px;
    color: #2ecc71;
    font-weight: bold;
    margin: 20px 0;
}

/* ... (keep all subsequent styles) ... */