/* General Page Styling */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f4ee; /* Light beige tone */
    line-height: 1.6;
}

/* About Us Container */
.about-us-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: none;
}

/* Section Title */
.about-us-container h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Paragraph Styling */
.about-us-container p {
    font-size: 1.1em;
    color: #555;
    text-align: center;
}

/* Link Styling */
.about-us-container a {
    color: #d72638;
    text-decoration: none;
    font-weight: bold;
}

.about-us-container a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {

    .about-us-container h2 {
        font-size: 1.6em;
    }

    .about-us-container p {
        font-size: 1em;
    }
}

.about-section:last-child {
    border-bottom: none;
}

.popular-ingredients-list, .popular-dishes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.popular-ingredients-list li, .popular-dishes-list li {
  border-radius: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.1em 1.5em;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
}

.popular-ingredients-list li:hover, .popular-dishes-list li:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px) scale(1.02);
}

.popular-ingredients-list a, .popular-dishes-list a {
  color: #2c3e50;
  font-size: 0.9em;
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: normal;
}

.popular-ingredients-list a:hover, .popular-dishes-list a:hover {
  text-decoration: none;
}

@media (max-width: 600px) {
  .popular-ingredients-list li, .popular-dishes-list li {
    padding: 0.8em 1em;
    font-size: 1em;
  }
  .popular-ingredients-list li::before, .popular-dishes-list li::before {
    height: 28px;
    margin-right: 0.7em;
  }
}