@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --color-charcoal: #333333;
  --color-indigo: #4B0082;
  --color-khaki: #BDB76B;
  --color-white: #F8F8F8;
  --color-black: #1a1a1a;
}

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

html, body {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--color-indigo);
}

h3 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--color-charcoal);
}

p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--color-charcoal);
}

strong, .highlight {
  font-weight: 600;
  color: var(--color-indigo);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(51, 51, 51, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
  background-color: var(--color-charcoal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 4px;
}

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

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

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

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-indigo);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

main {
  margin-top: 70px;
}

.hero {
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.8) 0%, rgba(75, 0, 130, 0.7) 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.75) 0%, rgba(75, 0, 130, 0.65) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 40px;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 20px;
  animation: slideInUp 0.8s ease-out;
}

.hero p {
  color: var(--color-khaki);
  font-size: 20px;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

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

section {
  padding: 140px 20px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

section:nth-child(odd) {
  background-color: var(--color-white);
}

section:nth-child(even) {
  background-color: #f0f0f0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.content-wrapper.image-right {
  grid-template-columns: 1fr 1fr;
}

.content-wrapper.image-left {
  grid-template-columns: 1fr 1fr;
}

.content-wrapper.image-left > :first-child {
  order: 2;
}

.content-wrapper.image-left > :last-child {
  order: 1;
}

.content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-text h3 {
  margin-bottom: 24px;
}

.content-text p {
  margin-bottom: 12px;
}

.content-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(75, 0, 130, 0.15);
  animation: slideInImage 0.8s ease-out;
  overflow: hidden;
}

@keyframes slideInImage {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

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

.product-card {
  background-color: var(--color-white);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--color-indigo);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(75, 0, 130, 0.2);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.product-card p {
  font-size: 16px;
  line-height: 1.6;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

table thead {
  background-color: var(--color-indigo);
  color: var(--color-white);
}

table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

table td {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
}

table tbody tr:hover {
  background-color: rgba(75, 0, 130, 0.05);
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--color-indigo);
  color: var(--color-white);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 15px rgba(75, 0, 130, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-button:hover {
  background-color: #3a0062;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 0, 130, 0.4);
}

.disclaimer-block {
  background-color: rgba(75, 0, 130, 0.08);
  border-left: 4px solid var(--color-indigo);
  padding: 24px;
  border-radius: 4px;
  margin: 40px 0;
}

.disclaimer-block h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--color-indigo);
}

.disclaimer-block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-charcoal);
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-indigo);
  box-shadow: 0 4px 12px rgba(75, 0, 130, 0.1);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: rgba(75, 0, 130, 0.1);
}

.faq-question:hover {
  background-color: rgba(75, 0, 130, 0.05);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-indigo);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 20px;
  border-top: 1px solid #e0e0e0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-charcoal);
}

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

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

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-charcoal);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-indigo);
  box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.1);
}

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

footer {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 60px 20px 40px;
  margin-top: 140px;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
}

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

.footer-section h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--color-khaki);
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #d0d0d0;
}

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

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #a0a0a0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-height: 120px;
  animation: slideInUp 0.5s ease-out;
}

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

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

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: var(--color-indigo);
  color: var(--color-white);
}

.cookie-btn-accept:hover {
  background-color: #3a0062;
}

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

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

.cookie-btn-policy {
  background-color: transparent;
  color: var(--color-khaki);
  border: 1px solid var(--color-khaki);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cookie-btn-policy:hover {
  background-color: rgba(189, 183, 107, 0.1);
}

.thank-you-container {
  text-align: center;
  padding: 80px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.thank-you-container h1 {
  color: var(--color-indigo);
  margin-bottom: 20px;
}

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

.message-disclaimer {
  background-color: rgba(75, 0, 130, 0.08);
  border-left: 4px solid var(--color-indigo);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 32px;
  text-align: left;
}

.message-disclaimer p {
  margin: 0;
  font-size: 15px;
}

.educational-message {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-indigo);
  margin: 40px 0;
  padding: 24px;
  background-color: rgba(189, 183, 107, 0.1);
  border-radius: 4px;
}

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

  .nav {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    height: 400px;
  }

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

  .content-wrapper.image-left > :first-child {
    order: 1;
  }

  .content-wrapper.image-left > :last-child {
    order: 2;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  section {
    padding: 80px 20px;
  }

  .cookie-banner {
    flex-direction: column;
    max-height: none;
    padding: 16px;
  }

  .cookie-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }

  .thank-you-container {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  main {
    margin-top: 60px;
  }

  header {
    padding: 12px 0;
  }

  .logo {
    font-size: 18px;
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    font-size: 12px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 15px;
  }

  .hero {
    height: 300px;
  }

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

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

  section {
    padding: 60px 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 12px;
  }

  table {
    font-size: 14px;
  }

  table th,
  table td {
    padding: 12px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-section h4 {
    font-size: 14px;
  }

  .footer-section p {
    font-size: 13px;
  }
}
