:root {
  --color-primary: #D4A574;
  --color-accent-green: #2D5016;
  --color-accent-teal: #5A9A7C;
  --color-accent-terra: #C85A3A;
  --color-neutral-light: #F9F7F4;
  --color-neutral-dark: #2B2B2B;
  --color-white: #FFFFFF;
  --color-border: #E8E4E0;
  --radius: 0.5rem;
  --font-family-heading: 'Montserrat', sans-serif;
  --font-family-body: 'Merriweather', serif;
  --max-container-width: 1140px;
  --spacing-lg: 100px;
  --spacing-md: 60px;
  --spacing-sm: 30px;
}

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

html, body {
  font-family: var(--font-family-body);
  color: var(--color-neutral-dark);
  background-color: var(--color-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-neutral-dark);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 2rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-neutral-dark);
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

li:before {
  content: "●";
  color: var(--color-accent-green);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

body {
  padding-top: 70px;
}

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

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

.navbar-logo {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.navbar-nav a {
  text-decoration: none;
  color: var(--color-neutral-dark);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar-nav a:hover {
  color: var(--color-accent-green);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--color-neutral-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: var(--color-white);
    width: 100%;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 0;
  }

  .navbar-nav.active {
    left: 0;
  }

  .navbar-nav a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--color-border);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }
}

.container {
  max-width: var(--max-container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--spacing-lg) 0;
}

.hero-section {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  margin-top: -70px;
  padding-top: 70px;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

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

.hero-content p {
  color: var(--color-white);
  font-size: 1.3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.two-column-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

.section-light {
  background-color: var(--color-neutral-light);
}

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

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

.card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--color-accent-green);
}

.card h3 {
  margin-top: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  background-color: var(--color-neutral-light);
  font-family: var(--font-family-heading);
  font-weight: 600;
  color: var(--color-accent-green);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--color-accent-green);
  color: var(--color-white);
  text-decoration: none;
  border-radius: var(--radius);
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--color-accent-green);
  cursor: pointer;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--color-accent-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(45, 80, 22, 0.2);
}

footer {
  background-color: var(--color-neutral-dark);
  color: var(--color-white);
  padding: 3rem 0;
  margin-top: var(--spacing-lg);
}

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

.footer-section h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section a {
  color: #CCCCCC;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

.footer-contact {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-contact p {
  margin: 0;
  color: #CCCCCC;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 2rem;
  text-align: center;
  color: #999;
  max-width: var(--max-container-width);
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 0.9rem;
}

.disclaimer {
  background-color: var(--color-neutral-light);
  padding: 1.5rem;
  border-left: 4px solid var(--color-accent-green);
  margin: 2rem 0;
  border-radius: var(--radius);
}

.disclaimer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-neutral-dark);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-family-heading);
  font-weight: 600;
  color: var(--color-neutral-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-family-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-green);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

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

.newsletter-form {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--color-neutral-light);
  border-radius: var(--radius);
}

.thank-you-page {
  text-align: center;
  padding: 4rem 2rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: var(--color-accent-green);
}

.thank-you-page h1 {
  color: var(--color-accent-green);
  margin-bottom: 1rem;
}

.thank-you-page p {
  font-size: 1.1rem;
  color: var(--color-neutral-dark);
  max-width: 600px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-neutral-dark);
  color: var(--color-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-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-family-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

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

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

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

@media (max-width: 1024px) {
  :root {
    --spacing-lg: 60px;
    --max-container-width: 960px;
  }

  .two-column {
    gap: 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-section {
    height: 400px;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 40px;
    --spacing-md: 30px;
    --spacing-sm: 20px;
  }

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

  .two-column.reverse {
    direction: ltr;
  }

  section {
    padding: var(--spacing-md) 0;
  }

  .container {
    padding: 0 1rem;
  }

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

  .footer-content {
    gap: 1.5rem;
  }

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

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

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

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

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 1rem;
  }

  .hero-section {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-lg: 30px;
  }

  .navbar {
    padding: 0.75rem 1rem;
  }

  .navbar-logo {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }

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

  .card {
    padding: 1.5rem;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }
}

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