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

:root {
  --stone-gray: #6B665E;
  --olive: #A8B5A2;
  --biscuit: #F5F0E5;
  --rust: #8D5A3C;
  --white: #FFFFFF;
  --dark: #2C2C2C;
}

html {
  font-size: 16px;
}

body {
  font-family: Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.9;
  color: var(--stone-gray);
  background-color: var(--white);
}

h1 {
  font-family: Montserrat, sans-serif;
  font-size: 4.25rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--stone-gray);
  margin: 0 0 0.5em 0;
}

h2 {
  font-family: Montserrat, sans-serif;
  font-size: 2.625rem;
  font-weight: 600;
  color: var(--stone-gray);
  margin: 1.2em 0 0.6em 0;
}

h3 {
  font-family: Montserrat, sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--stone-gray);
  margin: 1em 0 0.5em 0;
}

p {
  margin-bottom: 1.2em;
}

header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--stone-gray);
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--stone-gray);
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

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

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

footer {
  background-color: #F9F7F3;
  border-top: 1px solid var(--olive);
  margin-top: 3rem;
  padding: 3rem 5vw;
}

.footer-content {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--stone-gray);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  font-size: 0.95rem;
  color: var(--stone-gray);
  text-decoration: none;
  line-height: 1.8;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--olive);
  font-size: 0.9rem;
  color: var(--stone-gray);
}

.footer-disclaimer {
  font-size: 0.9rem;
  color: var(--stone-gray);
  margin-top: 1rem;
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 5vw;
}

.container-narrow {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 5vw;
}

section {
  margin: 110px 0;
}

.hero {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.hero img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.hero-text {
  margin-top: 2rem;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--olive), transparent);
  margin: 3rem 0;
}

.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
}

table th {
  background-color: #F9F7F3;
  border: 1px solid var(--olive);
  padding: 1rem;
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  color: var(--stone-gray);
}

table td {
  border: 1px solid #E8E3D8;
  padding: 0.8rem 1rem;
  color: var(--stone-gray);
}

table tr:hover {
  background-color: #FDFBF8;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background-color: var(--white);
  border: 1px solid var(--olive);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  background-color: var(--olive);
  color: var(--white);
  transform: scale(1.015);
}

.card h3 {
  margin-top: 0;
}

.card p {
  margin-bottom: 0.5em;
}

.card strong {
  font-family: Montserrat, sans-serif;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--rust);
  background-color: transparent;
  color: var(--rust);
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn:hover {
  background-color: var(--rust);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(141, 90, 60, 0.2);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

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

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  color: var(--stone-gray);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--olive);
  background-color: var(--biscuit);
  color: var(--stone-gray);
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.5;
}

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

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--rust);
  background-color: var(--white);
}

.form-disclaimer {
  background-color: #F9F7F3;
  border-left: 3px solid var(--rust);
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--stone-gray);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--stone-gray);
  color: var(--white);
  padding: 1.5rem 5vw;
  z-index: 999;
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.cookie-btn-primary {
  background-color: var(--rust);
  border-color: var(--rust);
}

.cookie-btn-primary:hover {
  background-color: var(--white);
  color: var(--rust);
}

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

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

.disclaimer-box {
  background-color: #F9F7F3;
  border-left: 3px solid var(--rust);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.numbered-list {
  margin: 1.5rem 0;
}

.numbered-list ol {
  margin-left: 2rem;
}

.numbered-list li {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.blog-card {
  border: 1px solid var(--olive);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.blog-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

.faq-question {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  color: var(--rust);
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  margin-top: 1rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::before {
  content: '▼ ';
  margin-right: 0.5rem;
}

.faq-item:not(.active) .faq-question::before {
  content: '▶ ';
  margin-right: 0.5rem;
}

.comparison-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.comparison-image-item {
  text-align: center;
}

.comparison-image-item img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.comparison-image-item p {
  margin-top: 1rem;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
  color: var(--rust);
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  nav ul {
    gap: 1rem;
  }

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

  .comparison-image-pair {
    grid-template-columns: 1fr;
  }

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

  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .table-wrapper {
    font-size: 0.9rem;
  }

  table td, table th {
    padding: 0.6rem 0.4rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 2rem;
    letter-spacing: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  nav a::after {
    display: none;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    width: 100%;
    text-align: center;
  }

  nav {
    width: 100%;
  }

  nav ul {
    width: 100%;
  }

  .cookie-banner.show {
    padding: 1rem 4vw;
  }

  .comparison-cards {
    grid-template-columns: 1fr;
  }
}
