.section-title {
  font-family: "Playfair Display", serif;
  color: #198754;
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #198754;
}

.section-subtitle {
  font-family: "Playfair Display", serif;
  color: #2a5d3b;
  font-size: 2rem;
}

.nutrition-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nutrition-highlight {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #e8f5e9;
  border-radius: 8px;
  border-left: 4px solid #198754;
}

.nutrient-box {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.nutrient-box:hover {
  transform: translateY(-5px);
}

.nutrient-box h5 {
  color: #198754;
  font-weight: 600;
  margin-bottom: 1rem;
}

.season-cards {
  margin: 2rem 0;
}

.season-box {
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.season-box h5 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
  font-weight: 600;
}

.season-box.spring {
  background-color: #e8f5e9;
  border-left: 4px solid #4caf50;
}

.season-box.spring h5 {
  color: #2e7d32;
}

.season-box.fall {
  background-color: #fff8e1;
  border-left: 4px solid #ffc107;
}

.season-box.fall h5 {
  color: #ff8f00;
}

.technique-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.technique-highlight {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #e3f2fd;
  border-radius: 8px;
  border-left: 4px solid #2196f3;
}

.technique-highlight h5 {
  color: #0d47a1;
  font-weight: 600;
  margin-bottom: 1rem;
}

.storage-tip {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #ffebee;
  border-radius: 8px;
  border-left: 4px solid #f44336;
}

.bg-light {
  background-color: #f8f9fa;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.mt-4 {
  margin-top: 1.5rem;
}
