/* Hero */
.cookies-hero {
  background-color: #ffc107;
  color: #212529;
  animation: fadeSlideDown 1s ease forwards;
}

.cookies-hero i {
  animation: glowPulse 2s infinite ease-in-out;
}

/* Content */
section h3 {
  margin-top: 30px;
  font-weight: 600;
}

section p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Dark Mode */
body.dark-mode .cookies-hero {
  background-color: #b8860b;
  color: #fff;
}

body.dark-mode section {
  background-color: #1e1e1e;
  color: #f5f5f5;
}