* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
}

.container {
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(231, 76, 60, 0.15);
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e74c3c, #c0392b, #e74c3c);
  border-radius: 24px 24px 0 0;
}

.header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.header h1 {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-shadow: 0 4px 8px rgba(231, 76, 60, 0.2);
  animation: slideInDown 1s ease-out;
}

.subtitle {
  font-size: 1.3rem;
  color: #666;
  font-weight: 300;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.content-section {
  background: white;
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.08);
  border: 2px solid rgba(231, 76, 60, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(231, 76, 60, 0.03),
    transparent
  );
  transition: left 0.6s ease;
}

.content-section:hover::before {
  left: 100%;
}

.content-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(231, 76, 60, 0.15);
  border-color: #e74c3c;
}

.section-title {
  font-size: 2.2rem;
  color: #c0392b;
  margin-bottom: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
}

.section-title::before {
  content: "";
  width: 5px;
  height: 35px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 3px;
  margin-right: 20px;
  box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

.section-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(231, 76, 60, 0.3), transparent);
  margin-left: 20px;
}

.description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  text-align: justify;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.benefit-card {
  background: linear-gradient(135deg, #fff8f8, #fef2f2);
  padding: 30px;
  border-radius: 18px;
  border: 2px solid rgba(231, 76, 60, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(231, 76, 60, 0.05),
    rgba(192, 57, 43, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
  border-color: #e74c3c;
}

.benefit-card h3 {
  color: #c0392b;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  color: #666;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.gallery-section {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.08);
  border: 2px solid rgba(231, 76, 60, 0.1);
}

.meat-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.meat-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid rgba(231, 76, 60, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.1);
}

.meat-item:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 20px 40px rgba(231, 76, 60, 0.25);
  border-color: #e74c3c;
}

.meat-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.meat-item:hover img {
  transform: scale(1.1);
}

.meat-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(192, 57, 43, 0.95));
  color: white;
  padding: 20px 15px 15px;
  font-weight: 600;
  font-size: 1.1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.meat-item:hover .overlay {
  transform: translateY(0);
}

.conclusion {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  text-align: center;
  padding: 35px;
  border-radius: 18px;
  margin-top: 40px;
  font-size: 1.3rem;
  font-weight: 500;
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
  position: relative;
  overflow: hidden;
}

.conclusion::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 1s ease;
}

.conclusion:hover::before {
  left: 100%;
}

.stats-bar {
  display: flex;
  justify-content: space-around;
  background: linear-gradient(135deg, #fff8f8, #fef2f2);
  padding: 30px;
  border-radius: 18px;
  margin: 30px 0;
  border: 2px solid rgba(231, 76, 60, 0.1);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.08);
}

.stat-item {
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e74c3c;
  display: block;
  text-shadow: 0 2px 4px rgba(231, 76, 60, 0.2);
}

.stat-label {
  font-size: 1rem;
  color: #666;
  margin-top: 8px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .container {
    padding: 25px;
    margin: 10px;
  }

  .header h1 {
    font-size: 2.8rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .meat-gallery {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .stats-bar {
    flex-direction: column;
    gap: 25px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-title::after {
    display: none;
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Floating animation for decorative elements */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}
