:root {
  --primary-color: #4a90e2;
  --primary-dark: #357abd;
  --primary-light: #6ba4e8;
  --secondary-color: #5c6bc0;
  --text-dark: #2c3e50;
  --text-medium: #546e7a;
  --text-light: #78909c;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}

* {
  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);
  background-color: var(--background-white);
  line-height: 1.6;
  font-size: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 20px 0;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  font-size: 14px;
  line-height: 1.5;
}

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

.cookie-banner .btn-light {
  background-color: white;
  color: var(--primary-color);
  border: none;
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.cookie-banner .btn-outline-light {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.cookie-banner .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.navbar {
  padding: 1rem 0;
}

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

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

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

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.9) 0%, rgba(92, 107, 192, 0.9) 100%);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  line-height: 1.5;
}

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

.page-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 18px;
  opacity: 0.9;
}

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

.content-section.bg-light {
  background-color: var(--background-light);
}

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

.subsection-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.feature-card,
.info-card,
.feature-box,
.habit-card,
.choice-card,
.value-card {
  background-color: var(--background-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover,
.info-card:hover,
.feature-box:hover,
.habit-card:hover,
.choice-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-title,
.card-title,
.box-title,
.habit-title,
.choice-title,
.value-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.disclaimer-box,
.intro-box,
.info-box,
.note-box {
  background-color: var(--background-light);
  border-left: 4px solid var(--primary-color);
  padding: 30px;
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
}

.disclaimer-box p,
.intro-box p,
.info-box p,
.note-box p {
  margin-bottom: 15px;
}

.disclaimer-box p:last-child,
.intro-box p:last-child,
.info-box p:last-child,
.note-box p:last-child {
  margin-bottom: 0;
}

.testimonial-card {
  background-color: var(--background-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 15px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-container {
  margin: 0 auto;
}

.faq-item {
  background-color: var(--background-white);
  border-radius: var(--radius-sm);
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

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

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

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

.cta-section .btn-primary {
  background-color: white;
  color: var(--primary-color);
  border-color: white;
}

.cta-section .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.products-intro {
  padding: 60px 0 40px;
  background-color: var(--background-light);
}

.intro-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.product-card {
  background-color: var(--background-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.product-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.product-description {
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.6;
}

.ingredients-block {
  background-color: var(--background-light);
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
}

.ingredients-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.ingredients-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.ingredients-list li {
  font-size: 14px;
  color: var(--text-medium);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.ingredients-list li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.product-note {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin-top: auto;
  margin-bottom: 0;
}

.product-disclaimer {
  padding: 60px 0;
  background-color: var(--background-light);
}

.disclaimer-card {
  background-color: var(--background-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
}

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

.about-section.bg-light {
  background-color: var(--background-light);
}

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

.feature-list li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-medium);
}

.feature-list li:before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 18px;
}

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

.contact-info {
  margin-top: 40px;
}

.contact-info-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-form-wrapper {
  background-color: var(--background-light);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form .form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form .form-control {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  font-size: 15px;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.contact-form .form-check-label {
  font-weight: normal;
  font-size: 14px;
}

.contact-note {
  padding: 60px 0;
}

.note-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.thankyou-section {
  padding: 100px 0;
  background-color: var(--background-light);
}

.thankyou-box {
  background-color: var(--background-white);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  box-shadow: var(--shadow-md);
}

.thankyou-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.thankyou-text {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 20px;
}

.thankyou-note {
  font-size: 16px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0;
}

.thankyou-actions {
  margin-top: 40px;
}

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

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

.policy-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-heading:first-child {
  margin-top: 0;
}

.policy-subheading {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-list {
  margin: 15px 0;
  padding-left: 20px;
}

.policy-list li {
  margin-bottom: 8px;
  color: var(--text-medium);
}

.contact-details {
  background-color: var(--background-light);
  padding: 25px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
}

.important-notice {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 30px;
  border-radius: var(--radius-sm);
  margin-bottom: 40px;
}

.notice-heading {
  font-size: 24px;
  font-weight: 700;
  color: #856404;
  margin-bottom: 15px;
}

.notice-text {
  font-size: 16px;
  color: #856404;
  margin-bottom: 0;
}

.site-footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}

.footer-legal li {
  margin-right: 20px;
  margin-bottom: 10px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

.max-width-800 {
  max-width: 800px;
}

.max-width-900 {
  max-width: 900px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

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

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

  .page-title {
    font-size: 28px;
  }

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

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

  .thankyou-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .thankyou-actions .btn:last-child {
    margin-bottom: 0;
  }

  .cookie-banner .col-md-4 {
    text-align: center;
    margin-top: 15px;
  }
}
