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

:root {
  --primary-color: #ffd700;
  --primary-dark: #ffc500;
  --secondary-color: #2c2c2c;
  --text-color: #1a1a1a;
  --text-light: #666666;
  --bg-light: #fafafa;
  --white: #ffffff;
  --border-radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

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

.header-main {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  transition: var(--transition);
  border-radius: 8px;
}

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

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 197, 0, 0.85) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: var(--secondary-color);
}

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

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.content-section {
  padding: 5rem 0;
}

.bg-gradient-light {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.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(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.category-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 1.5rem 1.5rem 1rem;
}

.category-text {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0 1.5rem 1.5rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.faq-answer {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--secondary-color);
  border: none;
  color: var(--white);
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #1a1a1a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  background-color: transparent;
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}

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

.btn-secondary {
  background-color: #e0e0e0;
  border: none;
  color: var(--text-color);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: #d0d0d0;
  color: var(--text-color);
}

.footer-main {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.footer-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

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

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

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

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 2rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

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

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cookie-text {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.3rem;
  color: var(--secondary-color);
  font-weight: 400;
}

.products-section {
  padding: 4rem 0;
}

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

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.product-content {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.product-description {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.product-ingredients {
  background-color: var(--bg-light);
  padding: 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.2rem;
}

.ingredients-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.8rem;
}

.ingredients-text {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.product-disclaimer {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
  margin-top: auto;
  margin-bottom: 0;
}

.info-box {
  background-color: #fff9e6;
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.info-text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.info-text:last-child {
  margin-bottom: 0;
}

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

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.value-text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.contact-text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-form {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--border-radius);
}

.form-group label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  transition: var(--transition);
}

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

.form-check-label {
  font-size: 0.95rem;
}

.thank-you-section {
  padding: 6rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background: var(--bg-light);
  padding: 4rem 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.thank-you-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.thank-you-actions {
  margin-top: 2.5rem;
}

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

.policy-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

.policy-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.policy-text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.policy-list {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-list li {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .content-section {
    padding: 3rem 0;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .thank-you-content {
    padding: 2.5rem 1.5rem;
  }

  .thank-you-title {
    font-size: 2rem;
  }

  .thank-you-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .thank-you-actions .btn.mr-3 {
    margin-right: 0;
  }
}
