@import url('https://fonts.googleapis.com/css2?family=Georgia:ital,wght@0,400;0,700;1,400&family=Work+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --color-warm-gray: #6B665E;
  --color-olive: #A8B5A2;
  --color-biscuit: #F8F5ED;
  --color-rust: #8D5A3C;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-gray-light: #E8E3DB;
  --color-gray-medium: #D4CDBF;
}

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

html {
  scroll-behavior: smooth;
}

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

h1 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  font-size: 4.25rem;
  letter-spacing: -1px;
  color: var(--color-warm-gray);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 2.625rem;
  color: var(--color-warm-gray);
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
}

h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--color-warm-gray);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

strong, .highlight {
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
  color: var(--color-olive);
}

a {
  color: var(--color-rust);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-warm-gray);
  text-decoration: underline;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-light);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

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

.logo {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-warm-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

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

nav a {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  color: var(--color-warm-gray);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

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

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

footer {
  background-color: var(--color-biscuit);
  border-top: 1px solid var(--color-gray-light);
  padding: 4rem 5vw 2rem;
  margin-top: 10rem;
}

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

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

.footer-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
}

.footer-section p, .footer-section ul {
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

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

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

.disclaimer-footer {
  background-color: var(--color-olive);
  color: var(--color-white);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.section {
  max-width: 1100px;
  margin: 8rem auto;
  padding: 0 5vw;
}

.section.full-bleed {
  max-width: 100%;
  padding: 0;
  margin: 8rem 0;
}

.section-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-with-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-height: 400px;
  object-fit: cover;
}

.section-with-image-full {
  max-width: 1500px;
  width: 100%;
  margin: 8rem auto;
  padding: 0 5vw;
}

.image-full-width {
  width: 100%;
  height: auto;
  margin: 3rem 0;
  border-radius: 8px;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--color-biscuit);
}

table th {
  background-color: var(--color-olive);
  color: var(--color-white);
  padding: 1.25rem;
  text-align: left;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
}

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

table tr:hover {
  background-color: rgba(168, 181, 162, 0.1);
  transform: scale(1.015);
  transition: all 0.3s ease;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-olive), transparent);
  margin: 4rem 0;
  width: 100%;
}

.comparison-block {
  background-color: var(--color-biscuit);
  border-left: 4px solid var(--color-olive);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.comparison-block:hover {
  background-color: rgba(168, 181, 162, 0.15);
  transform: scale(1.015);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comparison-block strong {
  color: var(--color-olive);
}

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

.card {
  background-color: var(--color-biscuit);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--color-gray-light);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--color-warm-gray);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background-color: rgba(168, 181, 162, 0.1);
}

.card h3 {
  margin-top: 0;
  color: var(--color-warm-gray);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.button {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 2px solid var(--color-rust);
  color: var(--color-rust);
  background-color: transparent;
  border-radius: 4px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.faq-item {
  background-color: var(--color-biscuit);
  margin: 1.5rem 0;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  background-color: var(--color-biscuit);
  border: 1px solid var(--color-gray-light);
  font-weight: 600;
  font-family: 'Work Sans', sans-serif;
  color: var(--color-warm-gray);
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background-color: rgba(168, 181, 162, 0.1);
}

.faq-question.active {
  background-color: var(--color-olive);
  color: var(--color-white);
  border-color: var(--color-olive);
}

.faq-answer {
  display: none;
  padding: 2rem;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-light);
  line-height: 1.9;
}

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

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: var(--color-warm-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-gray-medium);
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-warm-gray);
  background-color: var(--color-biscuit);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-olive);
  background-color: var(--color-white);
}

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

.form-disclaimer {
  background-color: var(--color-biscuit);
  border-left: 4px solid var(--color-rust);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-btn.accept:hover {
  background-color: rgba(168, 181, 162, 0.9);
}

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

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

.cookie-btn.learn {
  background-color: transparent;
  color: var(--color-white);
  text-decoration: underline;
}

.cookie-btn.learn:hover {
  text-decoration: none;
}

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

.content-width {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
}

.content-width-full {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 5vw;
}

.thank-you-message {
  text-align: center;
  padding: 4rem 5vw;
  background-color: var(--color-biscuit);
  border-radius: 8px;
  margin: 4rem auto;
  max-width: 600px;
}

.thank-you-message h2 {
  margin-top: 0;
  color: var(--color-olive);
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  nav ul {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  nav a {
    font-size: 0.9rem;
  }

  .section-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

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

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

  body {
    font-size: 1rem;
  }

  .section {
    margin: 4rem auto;
  }

  .hero {
    min-height: 300px;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  body {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .header-content {
    padding: 0.75rem 5vw;
  }

  nav ul {
    gap: 0.75rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .section {
    padding: 0 4vw;
  }

  .button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  table th, table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

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

  .cookie-text {
    font-size: 0.85rem;
  }

  .cookie-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}
