:root {
  --color-gray: #3C3C3C;
  --color-lime: #CCFF00;
  --color-blue: #4682B4;
  --color-red: #8B0000;
  --color-bg: #1a1a1a;
  --color-text: #e0e0e0;
  --color-dark: #0d0d0d;
  --spacing-lg: 120px;
  --spacing-md: 60px;
  --spacing-sm: 30px;
}

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

html, body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 17px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(60, 60, 60, 0.95) 0%, rgba(60, 60, 60, 0.85) 100%);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 15px 0;
}

header.scrolled {
  background-color: var(--color-gray);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  color: var(--color-lime);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--color-lime);
}

.nav-menu a.active {
  color: var(--color-lime);
}

body {
  padding-top: 70px;
}

.hero {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.8s ease;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60, 60, 60, 0.6) 0%, rgba(204, 255, 0, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-lime);
  animation: slideInUp 0.8s ease 0.2s both;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero h1 strong {
  color: var(--color-lime);
}

.section {
  padding: var(--spacing-lg) 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-gray {
  background-color: var(--color-gray);
  color: var(--color-text);
}

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: var(--color-lime);
  line-height: 1.3;
}

h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  color: var(--color-lime);
}

p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 17px;
}

strong {
  color: var(--color-lime);
  font-weight: 600;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.product-card {
  background-color: var(--color-gray);
  padding: 30px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  cursor: pointer;
  animation: fadeInUp 0.6s ease;
}

.product-card:hover {
  border-color: var(--color-lime);
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(204, 255, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.product-card h3 {
  margin-bottom: 15px;
}

.product-card p {
  font-size: 15px;
  margin-bottom: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 16px;
}

table th {
  background-color: var(--color-lime);
  color: var(--color-gray);
  padding: 15px;
  text-align: left;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

table td {
  padding: 15px;
  border-bottom: 1px solid rgba(204, 255, 0, 0.2);
}

table tr:hover {
  background-color: rgba(204, 255, 0, 0.05);
}

.nutrient-list {
  list-style: none;
  margin-bottom: 30px;
}

.nutrient-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid rgba(204, 255, 0, 0.1);
}

.nutrient-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-lime);
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  background-color: var(--color-lime);
  color: var(--color-gray);
  padding: 15px 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--color-lime);
  cursor: pointer;
  border-radius: 0;
  font-family: 'Oswald', sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  animation: pulse 0.6s ease;
  transform: scale(1.05);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(204, 255, 0, 0.3); }
  50% { box-shadow: 0 2px 25px rgba(204, 255, 0, 0.6); }
}

.disclaimer-block {
  background-color: rgba(70, 130, 180, 0.15);
  border-left: 4px solid var(--color-blue);
  padding: 25px;
  margin: 40px 0;
  font-size: 15px;
  line-height: 1.8;
}

.disclaimer-block strong {
  color: var(--color-lime);
}

footer {
  background-color: var(--color-dark);
  padding: 60px 30px;
  margin-top: var(--spacing-lg);
  border-top: 2px solid var(--color-gray);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-section p {
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-section a {
  color: var(--color-lime);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(204, 255, 0, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  color: rgba(224, 224, 224, 0.7);
}

.footer-bottom a {
  color: var(--color-lime);
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--color-blue);
}

.footer-policies {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.educational-notice {
  text-align: center;
  padding: 30px;
  background-color: rgba(204, 255, 0, 0.05);
  border: 1px solid var(--color-lime);
  margin: 40px 0;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--color-lime);
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-gray);
  padding: 25px 30px;
  border-top: 2px solid var(--color-lime);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  animation: slideUp 0.4s ease;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-button {
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 0;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background-color: var(--color-lime);
  color: var(--color-gray);
}

.cookie-accept:hover {
  background-color: #b8e600;
}

.cookie-reject {
  background-color: transparent;
  color: var(--color-lime);
  border: 1px solid var(--color-lime);
}

.cookie-reject:hover {
  background-color: rgba(204, 255, 0, 0.1);
}

.cookie-learn {
  background-color: transparent;
  color: var(--color-lime);
  border: 1px solid var(--color-lime);
}

.cookie-learn:hover {
  background-color: rgba(204, 255, 0, 0.1);
}

.faq-item {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(204, 255, 0, 0.1);
  padding-bottom: 25px;
}

.faq-question {
  font-weight: bold;
  font-size: 16px;
  color: var(--color-lime);
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question::before {
  content: '+';
  font-size: 20px;
  font-weight: bold;
  width: 24px;
  text-align: center;
}

.faq-item.active .faq-question::before {
  content: '−';
}

.faq-answer {
  display: none;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

.form-container {
  max-width: 600px;
  margin: 40px auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--color-lime);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background-color: rgba(60, 60, 60, 0.5);
  border: 1px solid var(--color-lime);
  color: var(--color-text);
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 10px rgba(70, 130, 180, 0.3);
  background-color: rgba(60, 60, 60, 0.8);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-disclaimer {
  background-color: rgba(139, 0, 0, 0.1);
  border: 1px solid var(--color-red);
  padding: 20px;
  margin-bottom: 25px;
  font-size: 14px;
  color: rgba(224, 224, 224, 0.9);
  border-radius: 0;
}

.form-disclaimer strong {
  color: var(--color-lime);
}

.submit-button {
  width: 100%;
  padding: 18px;
  background-color: var(--color-lime);
  color: var(--color-gray);
  border: none;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Oswald', sans-serif;
}

.submit-button:hover {
  background-color: #b8e600;
  transform: scale(1.02);
}

.thank-you-container {
  text-align: center;
  padding: var(--spacing-lg) 30px;
}

.thank-you-container h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-lime);
  margin-bottom: 20px;
}

.thank-you-container p {
  font-size: 18px;
  margin-bottom: 40px;
}

.image-block {
  margin: 40px 0;
  text-align: center;
}

.image-block img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  display: inline-block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-buttons {
    width: 100%;
    flex-wrap: wrap;
  }

  .cookie-button {
    flex: 1;
    min-width: 100px;
  }

  p {
    font-size: 16px;
  }

  .section {
    padding: var(--spacing-md) 20px;
  }

  :root {
    --spacing-lg: 60px;
  }
}
