:root {
  --primary-color: #d32f2f;
  --primary-dark: #b71c1c;
  --secondary-color: #424242;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --text-dark: #212121;
  --text-muted: #757575;
  --border-color: #e0e0e0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 70px;
}

.navbar {
  transition: all 0.3s ease;
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 80px 0;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 100px 0 60px;
  margin-top: -70px;
  padding-top: 140px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.category-card img {
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.category-content {
  padding: 30px;
  background: var(--white);
  border-radius: 0 0 8px 8px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-body {
  padding: 25px;
  flex-grow: 1;
}

.product-description {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.product-ingredients {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.product-card-detailed {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.product-card-detailed img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.ingredient-list {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.info-card,
.info-box {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 15px;
}

.faq-item {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.who-card,
.principle-card,
.why-card,
.help-topic {
  padding: 25px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.about-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.support-card,
.disclaimer-card,
.positioning-card,
.info-panel {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.thank-you-card {
  background: var(--white);
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.legal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legal-content h3 {
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content h5 {
  color: var(--secondary-color);
  margin-top: 20px;
  margin-bottom: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

footer {
  margin-top: 60px;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
  }

  .page-header {
    padding: 80px 0 40px;
    padding-top: 120px;
  }

  .btn-lg {
    padding: 10px 24px;
    font-size: 1rem;
  }

  .product-card img,
  .product-card-detailed img {
    height: 200px;
  }
}
