/* Fix for empty space between navbar and content */
.main-content {
  padding-top: 0px; /* Reduced from 80px */
}

@media (max-width: 768px) {
  .main-content {
    padding-top: 50px; /* Reduced from 70px */
  }
}

/* Enhanced Why PrinkWellness Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.benefit-card {
  background-color: var(--primary-light);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.benefit-card.wide {
  grid-column: span 3;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}

.benefit-card.wide .benefit-icon {
  margin-bottom: 0;
}

/* Ingredient icons */
.ingredient-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  vertical-align: middle;
}

.ingredients-list li,
.ingredient-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* How to use emojis */
.step-emoji {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* How to use step icons */
.step-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  vertical-align: middle;
}

.how-to-use-steps li,
.how-to-use-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card.wide {
    grid-column: span 1;
  }
}

/* Remove empty space between nav and content */
body {
  margin: 0;
  padding: 0;
}

main,
.container,
.content {
  margin-top: 0 !important;
  padding-top: 20px;
}

/* Why PrinkWellness section styling */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.why-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.why-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color, #ff6b6b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    margin-bottom: 30px;
  }
}

/* Make sure we don't have the About page link in navigation */
nav a[href*="about"],
nav a[href*="About"] {
  display: none !important;
}

/* Add this script tag to all HTML files */
.script-updates {
  display: none;
}
