* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #dc143c;
  --primary-dark: #b01030;
  --primary-light: #ff1744;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-700: #495057;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

.cookie-banner a {
  color: var(--white);
  text-decoration: underline;
}

.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  padding: 1rem 0;
}

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

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

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

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.85), rgba(176, 16, 48, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  padding: 10px 30px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  padding: 10px 30px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

.content-section {
  padding: 80px 0;
}

.bg-light {
  background: linear-gradient(to bottom, var(--white), var(--bg-light));
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.lead {
  font-size: 18px;
  color: var(--text-light);
}

.info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.info-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.gradient-card {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  height: 100%;
  transition: var(--transition);
}

.gradient-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gradient-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  margin: 1rem 0;
}

.category-card p {
  padding: 0 1rem 1rem;
  color: var(--text-light);
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.step-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  height: 100%;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.disclaimer-box {
  background: linear-gradient(to right, var(--gray-100), var(--white));
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.disclaimer-box a {
  color: var(--primary-color);
  font-weight: 600;
}

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  height: 100%;
}

.faq-item h4 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.cta-section h2 {
  color: var(--white);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.products-section {
  padding: 60px 0;
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.product-body {
  padding: 1.5rem;
}

.product-body h3 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 14px;
}

.product-ingredients {
  background: var(--gray-100);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.product-ingredients h5 {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-ingredients p {
  color: var(--text-light);
  font-size: 13px;
  margin: 0;
}

.product-note {
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
}

.product-note small {
  color: var(--text-light);
  font-style: italic;
}

.info-section {
  padding: 40px 0;
}

.approach-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
  height: 100%;
}

.approach-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  height: 100%;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.value-card h4 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.audience-card {
  background: linear-gradient(to bottom right, var(--white), var(--gray-100));
  padding: 2rem;
  border-radius: var(--border-radius);
  border-top: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
  height: 100%;
}

.audience-card h4 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
}

.contact-info-card h5 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-card a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.form-control {
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 12px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(220, 20, 60, 0.25);
}

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

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 2rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-content ul {
  margin-bottom: 1.5rem;
}

.policy-content a {
  color: var(--primary-color);
  font-weight: 600;
}

.site-footer {
  background: linear-gradient(to bottom, var(--text-dark), #000);
  color: var(--white);
  padding: 60px 0 20px;
}

.site-footer h5 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

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

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .content-section {
    padding: 40px 0;
  }

  .page-header h1 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 22px;
  }

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