:root {
  --primary-burgundy: #5D1A2F;
  --accent-gold: #D4A017;
  --light-beige: #F5F2E9;
  --dark-gray: #424242;
  --white: #FFFFFF;
  --light-gray: #F9F8F6;
  --border-gray: #E8E5DB;
}

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

html, body {
  font-family: 'Source Serif Pro', Georgia, serif;
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

body {
  padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 700;
  color: var(--primary-burgundy);
  margin: 1.5rem 0 1rem 0;
}

h1 {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 1rem;
}

h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
  margin-top: 1rem;
}

h2 {
  font-size: 40px;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 28px;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

a {
  color: var(--primary-burgundy);
  text-decoration: none;
  transition: color 0.4s ease;
}

a:hover {
  color: var(--accent-gold);
}

blockquote {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 25px;
  color: var(--primary-burgundy);
  border-left: 4px solid var(--accent-gold);
  padding-left: 2rem;
  margin: 2rem 0;
  font-weight: 300;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-gray);
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-burgundy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color 0.4s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-burgundy);
}

.container-wide {
  max-width: 1640px;
  margin: 0 auto;
  width: 100%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

section {
  padding: 100px 0;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(rgba(93, 26, 47, 0.4), rgba(93, 26, 47, 0.4)), url('images/hero-product.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  color: var(--white);
  font-size: 64px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero h1::after {
  background-color: var(--accent-gold);
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  color: var(--light-beige);
  font-size: 20px;
  margin-bottom: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

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

.text-section p {
  font-size: 18px;
  color: var(--dark-gray);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 3rem 0;
}

.two-column img {
  width: 100%;
  height: auto;
  border: 3px solid var(--accent-gold);
  transition: transform 0.4s ease;
}

.two-column img:hover {
  transform: scale(1.02);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  border: 2px solid var(--border-gray);
  padding: 2rem;
  background-color: var(--light-gray);
  transition: all 0.4s ease;
  text-align: center;
}

.card:hover {
  border-color: var(--accent-gold);
  background-color: var(--light-beige);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin-top: 1rem;
}

.card p {
  font-size: 16px;
  color: var(--dark-gray);
}

.table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border: 2px solid var(--border-gray);
  background-color: var(--light-gray);
}

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

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

table th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 700;
  font-family: 'Source Serif Pro', Georgia, serif;
}

table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-gray);
}

table tr:hover {
  background-color: rgba(212, 160, 23, 0.1);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary-burgundy);
  color: var(--white);
  border: 2px solid var(--primary-burgundy);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  cursor: pointer;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(93, 26, 47, 0.2);
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-burgundy);
  box-shadow: 0 6px 12px rgba(93, 26, 47, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-burgundy);
  border: 2px solid var(--primary-burgundy);
}

.btn-secondary:hover {
  background-color: var(--primary-burgundy);
  color: var(--white);
}

footer {
  background-color: var(--primary-burgundy);
  color: var(--light-beige);
  padding: 4rem 0 2rem 0;
  margin-top: 6rem;
  font-size: 14px;
}

footer h3 {
  color: var(--accent-gold);
  font-size: 18px;
  margin-bottom: 1rem;
}

footer a {
  color: var(--accent-gold);
}

footer a:hover {
  color: var(--light-beige);
}

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

.footer-section h3 {
  margin-top: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 160, 23, 0.3);
  padding-top: 2rem;
  text-align: center;
  font-size: 13px;
}

.disclaimer {
  background-color: var(--light-beige);
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 14px;
  color: var(--dark-gray);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-burgundy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--border-gray);
  border-radius: 4px;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 16px;
  transition: border-color 0.4s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

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

.faq-item {
  border-bottom: 1px solid var(--border-gray);
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 700;
  color: var(--primary-burgundy);
  cursor: pointer;
  padding: 1rem 0;
  font-size: 18px;
  transition: color 0.4s ease;
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-answer {
  display: none;
  padding: 1rem 0;
  color: var(--dark-gray);
  line-height: 1.8;
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card {
  border: 2px solid var(--border-gray);
  overflow: hidden;
  background-color: var(--white);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  margin-top: 0;
}

.blog-card-excerpt {
  flex: 1;
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.6;
}

.blog-card .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

.breadcrumb {
  padding: 1rem 0;
  font-size: 14px;
  color: var(--dark-gray);
}

.breadcrumb a {
  color: var(--primary-burgundy);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 1.5rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.4s ease;
  font-size: 14px;
}

.cookie-btn-accept {
  background-color: var(--accent-gold);
  color: var(--primary-burgundy);
}

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

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

.cookie-btn-reject:hover {
  background-color: var(--white);
  color: var(--dark-gray);
}

.cookie-btn-learn {
  background-color: transparent;
  color: var(--accent-gold);
  border: none;
  text-decoration: underline;
  padding: 0.6rem 0;
}

.cookie-btn-learn:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
    font-size: 15px;
  }

  section {
    padding: 60px 0;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .hero {
    height: 60vh;
  }

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

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

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

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

  .container {
    padding: 0 1rem;
  }
}
