:root {
  --primary-color: #D4A5A6;
  --primary-dark: #c29495;
  --neutral-white: #FAFAF8;
  --neutral-light: #F5F3F1;
  --neutral-dark: #3D3D3D;
  --accent-gold: #C4A57B;
  --border-color: #E8E4E0;
  --radius-small: 8px;
}

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

html, body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--neutral-dark);
  background-color: var(--neutral-white);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 80px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.logo:hover {
  color: var(--primary-dark);
}

nav a, nav button {
  color: var(--neutral-dark);
  text-decoration: none;
  font-size: 15px;
  margin-left: 30px;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

nav a:hover, nav button:hover {
  color: var(--primary-color);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

section:last-of-type {
  border-bottom: none;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  color: var(--neutral-dark);
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  color: var(--neutral-dark);
  margin-bottom: 40px;
}

h3 {
  font-size: 24px;
  color: var(--neutral-dark);
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--neutral-dark);
}

.hero {
  background: linear-gradient(135deg, #F5F3F1 0%, #FAFAF8 100%);
  padding: 100px 0;
}

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

.hero-text h1 {
  font-size: 52px;
  margin-bottom: 30px;
  line-height: 1.1;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #666;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-small);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.product-card {
  background-color: var(--neutral-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-small);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 165, 166, 0.1);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-small);
  margin-bottom: 20px;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 12px;
}

.product-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.content-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}

.content-section.reverse {
  grid-template-columns: 1fr 2fr;
}

.content-section-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-small);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.content-text h3 {
  margin-top: 0;
}

.disclaimer-box {
  background-color: var(--neutral-light);
  border-left: 4px solid var(--primary-color);
  padding: 25px;
  border-radius: var(--radius-small);
  margin: 40px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-dark);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 14px 35px;
  border-radius: var(--radius-small);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: var(--primary-dark);
}

.cta-button-secondary {
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
  border: 1px solid var(--border-color);
}

.cta-button-secondary:hover {
  background-color: #EEEBE6;
}

footer {
  background-color: var(--neutral-dark);
  color: var(--neutral-white);
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #CCC;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-contact {
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-bottom {
  font-size: 13px;
  color: #AAA;
}

.educational-message {
  text-align: center;
  font-size: 15px;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 10px;
}

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

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

label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--neutral-dark);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-small);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(212, 165, 166, 0.1);
}

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

.form-disclaimer {
  font-size: 13px;
  color: #999;
  margin-top: 15px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-dark);
  color: white;
  padding: 25px;
  display: none;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

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

.cookie-accept,
.cookie-decline {
  padding: 10px 20px;
  border-radius: var(--radius-small);
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: var(--primary-dark);
}

.cookie-decline {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  header {
    padding: 15px 0;
  }

  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    margin-left: 15px;
    font-size: 14px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .hero-text h1 {
    font-size: 40px;
  }

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

  .content-section,
  .content-section.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-accept,
  .cookie-decline {
    flex: 1;
  }

  footer {
    padding: 40px 0 20px;
  }

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

  .footer-divider {
    flex-direction: column;
    align-items: flex-start;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

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

.slide-in {
  animation: slideIn 0.6s ease-out;
}

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