:root {
  --primary-brown: #2A3E1F;
  --accent-beige: #E6D9C4;
  --accent-green: #8FA67D;
  --accent-olive: #4C5E3F;
  --text-dark: #1a1a1a;
  --text-light: #f5f5f5;
  --border-light: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--text-dark);
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Spectral', serif;
  font-weight: 600;
  color: var(--primary-brown);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: 48px;
  font-weight: 700;
}

h3 {
  font-size: 32px;
  font-weight: 600;
}

h4 {
  font-size: 24px;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-brown);
  text-decoration: none;
  transition: color 0.45s ease-in-out;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Spectral', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-brown);
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: color 0.45s ease-in-out;
  margin-left: 1.5rem;
}

.nav-link:hover {
  color: var(--accent-green) !important;
}

main {
  margin-top: 80px;
}

.hero-block {
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(42, 62, 31, 0.5);
  z-index: 1;
}

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

.hero-content h1 {
  color: #ffffff;
  font-size: 60px;
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--accent-beige);
  font-size: 20px;
}

.section-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-light {
  background-color: #fafafa;
}

.section-white {
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.45s ease-in-out;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: var(--primary-brown);
  font-family: 'Spectral', serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-dark);
}

.btn {
  font-family: 'Spectral', serif;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: all 0.45s ease-in-out;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--primary-brown);
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-green), var(--primary-brown));
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--accent-beige);
  color: var(--primary-brown);
  border: 1px solid var(--accent-beige);
}

.btn-secondary:hover {
  background-color: var(--accent-green);
  color: #ffffff;
  border-color: var(--accent-green);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: #666;
}

.two-column {
  display: grid;
  grid-template-columns: 57% 43%;
  gap: 3rem;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: 43% 57%;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.five-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

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

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

.comparison-table th {
  background-color: var(--primary-brown);
  color: #ffffff;
  font-weight: 600;
}

.comparison-table tr:hover {
  background-color: #fafafa;
}

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

.disclaimer-box strong {
  color: var(--primary-brown);
}

footer {
  background-color: var(--primary-brown);
  color: var(--accent-beige);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

footer h5 {
  color: var(--accent-beige);
  margin-bottom: 1rem;
}

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

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-brown);
  color: #ffffff;
  padding: 1.5rem 2rem;
  z-index: 2000;
  display: none;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
  flex: 1;
}

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

.cookie-content a {
  color: var(--accent-beige);
  text-decoration: underline;
}

.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.45s ease-in-out;
  font-size: 14px;
}

.cookie-accept {
  background-color: var(--accent-green);
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #7a9566;
}

.cookie-reject {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

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

.form-control {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 0.75rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}

.form-control:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 0.2rem rgba(143, 166, 125, 0.25);
}

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

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

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

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

.faq-question {
  font-weight: 600;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  cursor: pointer;
}

.faq-answer {
  color: var(--text-dark);
  line-height: 1.75;
}

.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item {
  display: inline;
}

.breadcrumb-item::before {
  content: '/';
  margin: 0 0.5rem;
  color: #ccc;
}

.breadcrumb-item:first-child::before {
  display: none;
}

.breadcrumb-item a {
  color: var(--accent-green);
}

.breadcrumb-item.active {
  color: var(--text-dark);
}

.full-width-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .hero-block {
    height: 400px;
  }

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

  .two-column,
  .two-column.reverse {
    grid-template-columns: 1fr;
  }

  .three-grid,
  .four-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .five-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .section-container {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-block {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .three-grid,
  .four-grid,
  .five-grid {
    grid-template-columns: 1fr;
  }

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

  .navbar-brand {
    font-size: 18px;
  }
}
