:root {
  --primary-color: #ffc107;
  --primary-dark: #ffa000;
  --secondary-color: #212529;
  --text-dark: #212529;
  --text-light: #6c757d;
  --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", "Arial", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-name {
  color: var(--primary-color);
  font-weight: 800;
  letter-spacing: -0.5px;
}

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

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

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

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

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

.btn-outline-dark {
  border-width: 2px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  transform: translateY(-2px);
}

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

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

.features-section {
  background-color: var(--white);
}

.feature-box {
  padding: 2rem;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-box p {
  color: var(--text-light);
  margin-bottom: 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.products-preview {
  background-color: var(--bg-light);
}

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

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

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

.product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.product-body p {
  color: var(--text-light);
  margin-bottom: 1rem;
  flex: 1;
}

.product-benefit {
  font-size: 0.9rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-section {
  background-color: var(--white);
}

.info-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.info-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.cta-section h2 {
  color: var(--text-dark);
  font-weight: 800;
}

.cta-section p {
  color: var(--text-dark);
}

.footer {
  background-color: var(--secondary-color);
  margin-top: 0;
}

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

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.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-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.cookie-consent p {
  margin: 0;
  font-size: 0.9rem;
}

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

.page-header {
  background-color: var(--bg-light);
}

.page-header h1 {
  font-weight: 800;
  color: var(--text-dark);
}

.page-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.about-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.info-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
}

.info-box h3,
.info-box h4 {
  color: var(--text-dark);
  font-weight: 700;
}

.disclaimer-box {
  background-color: #fff3cd;
  border-color: var(--primary-color);
}

.value-item h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper {
  background-color: var(--bg-light);
}

.form-control {
  border: 2px solid var(--border-color);
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

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

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-info h5 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info p {
  color: var(--text-light);
}

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

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

.success-icon {
  display: inline-block;
}

.policy-content {
  background-color: var(--white);
}

.policy-document h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-document h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-document h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

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

.policy-document ul,
.policy-document ol {
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.policy-document li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.policy-document strong {
  color: var(--text-dark);
  font-weight: 700;
}

.contact-box {
  background-color: var(--bg-light);
}

.contact-box p {
  margin-bottom: 0.5rem;
}

.table {
  color: var(--text-light);
}

.table thead th {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-weight: 700;
  border-bottom: 2px solid var(--border-color);
}

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

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

  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

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

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

@media (max-width: 767px) {
  .hero-section {
    padding: 2rem 0;
  }

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

  .product-image {
    height: 200px;
  }

  .cookie-consent .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cookie-consent .col-md-4 {
    margin-top: 1rem;
  }
}
