:root {
  --primary-bg: #f1f8e9;
  --accent-light: #f0f4c3;
  --accent-medium: #9ccc65;
  --accent-dark: #558b2f;
  --white: #ffffff;
  --text-color: #558b2f;
  --transition-normal: 0.28s ease-out;
  --transition-hover: 0.34s ease-out;
  --container-width: 1520px;
  --padding-sides: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Poppins', sans-serif;
  background-color: var(--white);
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}

h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.8px;
  color: var(--text-color);
}

h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.6px;
  color: var(--text-color);
}

h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: var(--text-color);
}

p {
  margin-bottom: 1.2rem;
  max-width: 720px;
  color: var(--text-color);
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 28px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 36px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  p {
    font-size: 16px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1rem var(--padding-sides);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .header-content {
    padding: 1rem 28px;
    flex-direction: column;
    gap: 1rem;
  }
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1.5rem;
    font-size: 16px;
  }
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-normal);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  margin-top: 100px;
  background: linear-gradient(135deg, rgba(85, 139, 47, 0.08) 0%, rgba(156, 204, 101, 0.05) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 24px rgba(85, 139, 47, 0.12);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(85, 139, 47, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  color: white;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  max-width: 600px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero-image {
    height: 350px;
  }
  
  .hero-text {
    font-size: 26px;
  }
}

section {
  padding: 150px 0;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

.section-alt {
  background-color: var(--primary-bg);
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

@media (max-width: 768px) {
  .content-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 9px 24px rgba(85, 139, 47, 0.12);
  transition: box-shadow var(--transition-hover), transform var(--transition-hover);
  transform: scale(1);
}

.content-image:hover {
  box-shadow: 0 12px 32px rgba(85, 139, 47, 0.18);
  transform: scale(1.04);
  filter: brightness(1.05);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
}

thead {
  background-color: var(--accent-dark);
  color: white;
}

th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--accent-light);
  font-size: 16px;
}

tbody tr:hover {
  background-color: var(--primary-bg);
}

.list-items {
  list-style: none;
  margin: 1.5rem 0;
}

.list-items li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-color);
  line-height: 1.8;
}

.list-items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: bold;
  font-size: 20px;
}

.faq-container {
  margin: 2rem 0;
}

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

.faq-question {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: color var(--transition-normal);
  font-size: 18px;
}

.faq-question:hover {
  color: var(--accent-medium);
}

.faq-toggle {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: var(--accent-dark);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 1rem 0;
  color: var(--text-color);
  line-height: 1.8;
  font-size: 16px;
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--accent-light);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  color: var(--text-color);
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(156, 204, 101, 0.1);
}

.form-disclaimer {
  font-size: 14px;
  color: var(--text-color);
  margin: 1rem 0;
  padding: 0.8rem;
  background-color: var(--accent-light);
  border-radius: 6px;
  line-height: 1.6;
}

button {
  background-color: var(--accent-dark);
  color: white;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--transition-normal), transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: capitalize;
  position: relative;
  text-align: center;
}

button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease;
}

button:hover {
  background-color: #6b8e23;
  transform: translateY(-2px);
}

button:hover::after {
  width: 100%;
}

.disclaimer-text {
  background-color: var(--primary-bg);
  border-left: 4px solid var(--accent-dark);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
}

.disclaimer-text h2 {
  font-size: 24px;
  margin-bottom: 1rem;
}

footer {
  background-color: var(--accent-dark);
  color: white;
  padding: 3rem var(--padding-sides);
  margin-top: 4rem;
}

@media (max-width: 768px) {
  footer {
    padding: 2rem 28px;
  }
}

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

.footer-section h4 {
  color: var(--accent-light);
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  color: var(--primary-bg);
  font-size: 14px;
  line-height: 1.8;
}

.footer-section a {
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: var(--primary-bg);
  font-size: 14px;
}

.disclaimer-line {
  color: var(--accent-light);
  font-weight: 500;
  margin: 1rem 0;
}

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

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

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

.modal-content {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }
}

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

.modal-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-color);
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-normal);
}

.close-btn:hover {
  color: var(--accent-dark);
}

.modal-body {
  color: var(--text-color);
  line-height: 1.8;
  font-size: 15px;
}

.modal-body h3 {
  font-size: 22px;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.modal-body ol,
.modal-body ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.modal-body li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.modal-body a {
  color: var(--accent-dark);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-dark);
  color: white;
  padding: 1.5rem;
  z-index: 1500;
  display: none;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

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

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

.cookie-text {
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 1.6;
  color: var(--primary-bg);
}

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

@media (max-width: 768px) {
  .cookie-buttons {
    flex-direction: column;
  }
}

.cookie-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.cookie-accept:hover {
  background-color: white;
}

.cookie-decline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

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

.cookie-more {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

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

.info-message {
  background-color: var(--primary-bg);
  border-left: 5px solid var(--accent-dark);
  padding: 1.2rem;
  margin: 2rem 0;
  border-radius: 4px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.8;
}

.info-message strong {
  color: var(--accent-dark);
}

.visual-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.list-item {
  background-color: var(--primary-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid var(--accent-light);
  text-align: center;
  transition: all var(--transition-hover);
}

.list-item:hover {
  border-color: var(--accent-dark);
  box-shadow: 0 6px 18px rgba(85, 139, 47, 0.15);
  transform: translateY(-4px);
}

.list-item-title {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.list-item-desc {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
}

.thank-you-message {
  background-color: var(--accent-medium);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  text-align: center;
  animation: slideDown 0.4s ease;
}

.thank-you-message h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.cta-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--accent-dark);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-normal);
  margin: 0.5rem;
}

.cta-link:hover {
  background-color: #6b8e23;
}

@media (max-width: 768px) {
  :root {
    --padding-sides: 28px;
  }
}
