:root {
  --primary-bg: #F9F9F7;
  --accent-dark: #33691E;
  --accent-medium: #689F38;
  --accent-light: #9CCC65;
  --accent-pale: #DCEDC8;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --border-light: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Lato', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.3px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

h2 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--accent-dark);
}

h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

.container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
}

.section.hero {
  padding: 160px 0;
  background-color: var(--primary-bg);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  color: var(--accent-dark);
  margin-bottom: 25px;
}

.hero-text p {
  font-size: 19px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(51, 105, 30, 0.08);
}

.two-column {
  display: flex;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}

.two-column-text {
  flex: 1;
  min-width: 300px;
}

.two-column-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.two-column-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.5s ease;
}

.two-column-image img:hover {
  border-color: var(--accent-medium);
  box-shadow: 0 8px 24px rgba(104, 159, 56, 0.12);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.card {
  padding: 35px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  background-color: #fefffe;
  transition: all 0.5s ease;
}

.card:hover {
  border-color: var(--accent-medium);
  box-shadow: 0 12px 32px rgba(104, 159, 56, 0.1);
  transform: translateY(-4px);
}

.card h3 {
  color: var(--accent-dark);
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  color: var(--text-light);
}

.table-responsive {
  overflow-x: auto;
  margin: 40px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fefffe;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

table th {
  background-color: var(--accent-pale);
  color: var(--accent-dark);
  padding: 18px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--border-light);
  font-size: 16px;
}

table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-light);
  font-size: 16px;
}

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

table tbody tr:hover {
  background-color: rgba(212, 237, 200, 0.3);
}

.accordion {
  margin: 30px 0;
}

.accordion-item {
  border: 1px solid var(--border-light);
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  padding: 20px;
  background-color: #fefffe;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--accent-dark);
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background-color: var(--accent-pale);
  color: var(--accent-dark);
}

.accordion-header.active {
  background-color: var(--accent-pale);
  color: var(--accent-dark);
}

.accordion-header::after {
  content: '▼';
  font-size: 12px;
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background-color: #fafaf8;
}

.accordion-content.active {
  max-height: 1000px;
}

.accordion-body {
  padding: 25px 20px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
}

.form-section {
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--accent-pale) 100%);
  padding: 80px 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fefffe;
  padding: 50px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--accent-dark);
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-medium);
  box-shadow: 0 0 0 3px rgba(104, 159, 56, 0.1);
}

.form-disclaimer {
  background-color: var(--accent-pale);
  padding: 16px;
  border-radius: 6px;
  margin: 20px 0;
  font-size: 13px;
  color: var(--accent-dark);
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: var(--accent-medium);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--accent-medium);
}

.btn:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 8px 20px rgba(51, 105, 30, 0.2);
}

.btn.secondary {
  background-color: transparent;
  color: var(--accent-medium);
  border: 1px solid var(--accent-medium);
}

.btn.secondary:hover {
  background-color: var(--accent-pale);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

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

.highlight {
  color: var(--accent-medium);
  font-weight: 600;
}

.italic {
  font-style: italic;
  font-weight: 500;
  color: var(--text-light);
}

header {
  background-color: #fefffe;
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

header.scrolled {
  border-bottom-color: var(--accent-medium);
  box-shadow: 0 4px 12px rgba(104, 159, 56, 0.1);
}

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

.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 32px;
  width: auto;
}

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

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: var(--accent-medium);
}

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

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

footer {
  background-color: #fefffe;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 40px 0;
  margin-top: 100px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

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

.footer-section p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-light);
}

.disclaimer-banner {
  background-color: var(--accent-pale);
  padding: 20px;
  border-left: 4px solid var(--accent-medium);
  margin: 40px 0;
  border-radius: 6px;
  font-size: 15px;
  color: var(--accent-dark);
  line-height: 1.7;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fefffe;
  padding: 40px;
  border-radius: 12px;
  max-width: 650px;
  width: 95%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
}

.modal-header h2 {
  margin: 0;
  font-size: 28px;
  color: var(--accent-dark);
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--accent-medium);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fefffe;
  border-top: 1px solid var(--border-light);
  padding: 20px 40px;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
  display: block;
}

.cookie-container {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

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

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

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

.cookie-accept:hover {
  background-color: var(--accent-dark);
}

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

.cookie-decline:hover {
  background-color: var(--border-light);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.cookie-more {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-light);
  text-decoration: underline;
}

.cookie-more:hover {
  border-color: var(--accent-medium);
  color: var(--accent-medium);
}

.thank-you-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2100;
  background-color: #fefffe;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 95%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.thank-you-message.show {
  display: block;
}

.thank-you-message h2 {
  color: var(--accent-dark);
  margin-bottom: 15px;
}

.thank-you-message p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.thank-you-icon {
  font-size: 48px;
  color: var(--accent-medium);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header-content {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .hero-content,
  .two-column {
    flex-direction: column;
    gap: 40px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  nav ul {
    gap: 25px;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 14px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .form-container {
    padding: 30px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

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

  table th,
  table td {
    padding: 12px;
    font-size: 14px;
  }
}

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

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
    line-height: 1.6;
  }

  .section {
    padding: 60px 0;
  }

  header {
    padding: 10px 0;
  }

  .header-content {
    height: 60px;
    padding: 0 15px;
  }

  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 13px;
  }

  .container {
    padding: 0 15px;
  }

  .form-container {
    padding: 25px 15px;
  }

  footer {
    padding: 40px 0 30px 0;
  }

  .footer-content {
    gap: 20px;
  }
}
