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

:root {
  --color-warm-sand: #E8D8C2;
  --color-olive-green: #708238;
  --color-sky-blue: #A3B5C0;
  --color-terra: #CD683D;
  --color-text-dark: #2c2c2c;
  --color-white: #ffffff;
  --spacing-base: 16px;
  --spacing-lg: 80px;
  --spacing-xl: 120px;
  --radius: 0px;
}

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

html, body {
  font-family: 'Open Sans', sans-serif;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  line-height: 1.6;
}

body {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 48px;
  color: var(--color-olive-green);
  margin-bottom: 20px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  color: var(--color-terra);
  margin-bottom: 20px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  color: var(--color-olive-green);
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 15px 0;
}

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

header .logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-olive-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

header nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: color 0.3s ease;
}

header nav a:hover {
  color: var(--color-olive-green);
  text-decoration: none;
}

/* Main Content */
main {
  margin-top: 80px;
  padding-bottom: 40px;
}

/* Sections */
section {
  padding: var(--spacing-lg) 40px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-hero {
  background-color: var(--color-warm-sand);
  padding: var(--spacing-xl) 40px;
  margin-top: 0;
}

.section-hero h1 {
  margin-bottom: 20px;
  font-size: 52px;
}

.section-hero-content {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.section-hero-text {
  flex: 1;
}

.section-hero-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.section-hero-image {
  flex: 1;
}

.section-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Two Column Sections */
.section-two-column {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-xl) 40px;
}

.section-two-column.reverse {
  flex-direction: row-reverse;
}

.section-two-column-text {
  flex: 1;
}

.section-two-column-image {
  flex: 1;
}

.section-two-column-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-xl) 40px;
}

.card {
  background-color: var(--color-white);
  border: 1px solid #e0d5c7;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: var(--color-terra);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-warm-sand);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.card-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Table Styles */
.table-section {
  padding: var(--spacing-xl) 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.table-section h2 {
  margin-bottom: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

table thead {
  background-color: var(--color-olive-green);
  color: var(--color-white);
}

table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0d5c7;
}

table tbody tr:hover {
  background-color: var(--color-warm-sand);
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--color-olive-green);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--color-terra);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(112, 130, 56, 0.3);
  text-decoration: none;
}

/* Disclaimer Block */
.disclaimer-block {
  background-color: #f5f1eb;
  border-left: 4px solid var(--color-terra);
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
}

.disclaimer-block p {
  margin-bottom: 10px;
  font-size: 14px;
}

.disclaimer-block p:last-child {
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--color-text-dark);
  color: var(--color-white);
  padding: 60px 40px;
  margin-top: var(--spacing-xl);
}

footer .container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

footer h3 {
  color: var(--color-warm-sand);
  font-size: 16px;
  margin-bottom: 15px;
}

footer p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}

footer a {
  color: var(--color-sky-blue);
}

footer a:hover {
  color: var(--color-terra);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-text-dark);
  color: var(--color-white);
  padding: 20px 40px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background-color: var(--color-terra);
}

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

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

.cookie-btn-policy {
  background-color: transparent;
  border: none;
  color: var(--color-sky-blue);
  text-decoration: underline;
  padding: 0;
}

.cookie-btn-policy:hover {
  color: var(--color-terra);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  header .container {
    padding: 0 20px;
  }

  header nav ul {
    gap: 15px;
  }

  header nav a {
    font-size: 12px;
  }

  section {
    padding: 60px 20px;
  }

  .section-hero {
    padding: 60px 20px;
  }

  .section-hero-content {
    flex-direction: column;
    gap: 30px;
  }

  .section-two-column,
  .section-two-column.reverse {
    flex-direction: column;
    gap: 30px;
    padding: 60px 20px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 20px;
  }

  .table-section {
    padding: 60px 20px;
  }

  table {
    font-size: 12px;
  }

  table th, table td {
    padding: 10px;
  }

  footer .container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

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

  .cookie-banner p {
    font-size: 12px;
  }

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

  .cookie-btn {
    font-size: 12px;
    padding: 8px 16px;
    flex: 1;
    min-width: 100px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  header nav ul {
    gap: 10px;
  }

  section {
    padding: 40px 15px;
  }

  .card-grid {
    padding: 40px 15px;
  }

  .disclaimer-block {
    padding: 15px;
  }
}
