:root {
  --primary-color: #f4c430;
  --primary-dark: #d4a520;
  --primary-light: #fff8dc;
  --secondary-color: #2c3e50;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
}

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

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

.header-main {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.logo-text {
  color: var(--secondary-color);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--secondary-color);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

.hero-section {
  position: relative;
  min-height: 500px;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(244, 196, 48, 0.85), rgba(212, 165, 32, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  padding: 4rem 0 3rem;
  text-align: center;
}

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

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.content-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.info-card h3,
.info-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.recommendation-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.disclaimer-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary-dark);
  padding: 2rem;
  border-radius: 5px;
  margin: 2rem 0;
}

.disclaimer-box p {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 1rem;
  font-style: normal;
}

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

.product-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.product-body {
  padding: 1.5rem;
}

.product-body h3 {
  color: var(--secondary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.ingredients-block {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.ingredients-block h4 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.ingredients-block ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-light);
}

.product-disclaimer {
  background: var(--primary-light);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-dark);
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.value-card h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

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

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
  border-bottom: none;
}

.contact-form-wrapper {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.thank-you-section {
  padding: 5rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background: var(--primary-light);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.policy-content h3 {
  color: var(--primary-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.policy-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

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

.cta-section h2 {
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 196, 48, 0.4);
}

.btn-secondary {
  background: var(--secondary-color);
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s ease;
}

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

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

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.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: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-policy-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

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

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
  color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

  .page-header h1 {
    font-size: 2rem;
  }

  .content-section h2 {
    font-size: 1.6rem;
  }

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

  .cookie-content p {
    margin-bottom: 1rem;
  }

  .btn-lg {
    padding: 0.65rem 1.5rem;
    font-size: 1rem;
  }
}
