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

:root {
  --bg-primary: #F9FFF6;
  --accent-1: #43A047;
  --accent-2: #2E7D32;
  --accent-3: #76FF03;
  --accent-4: #C8E6C9;
  --text-dark: #1a1a1a;
  --text-light: #5a5a5a;
}

html, body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.9;
  font-size: 17px;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.2;
}

h1 {
  font-size: 56px;
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out;
}

h2 {
  font-size: 42px;
  color: var(--accent-1);
  margin-bottom: 30px;
  border-bottom: 3px solid var(--accent-4);
  padding-bottom: 15px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  color: var(--accent-2);
  margin-bottom: 15px;
}

body {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #fafff9 100%);
  min-height: 100vh;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(249, 255, 246, 0.95);
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(67, 160, 71, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(249, 255, 246, 0.99);
  padding: 15px 0;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

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

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

.container-full {
  width: 100%;
  padding: 0 40px;
}

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

section {
  padding: 150px 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(67, 160, 71, 0.1) 0%, rgba(200, 230, 201, 0.1) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-dark);
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 92px;
  margin-bottom: 20px;
  animation: slideInDown 0.8s ease-out;
}

.hero p {
  font-size: 20px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

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

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease-out;
}

.card:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(67, 160, 71, 0.2);
  background: linear-gradient(135deg, rgba(200, 230, 201, 0.3) 0%, rgba(118, 255, 3, 0.1) 100%);
}

.row {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.row.two-cols {
  grid-template-columns: 1fr 1fr;
}

.row.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.row.six-cols {
  grid-template-columns: repeat(6, 1fr);
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.list-check {
  list-style: none;
  padding: 0;
}

.list-check li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  line-height: 1.8;
}

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

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

th {
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  color: white;
  padding: 20px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}

td {
  padding: 18px 20px;
  border-bottom: 1px solid #e8e8e8;
  color: var(--text-dark);
}

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

tr:hover {
  background-color: rgba(200, 230, 201, 0.3);
}

.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.6s ease-out;
}

.faq-question {
  padding: 20px;
  background-color: rgba(200, 230, 201, 0.2);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--accent-2);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(200, 230, 201, 0.4);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
  border-top: 2px solid var(--accent-4);
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.9;
}

button, .btn {
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  animation: pulse 2s infinite;
}

button:hover, .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 160, 71, 0.3);
}

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

.btn-secondary:hover {
  background: var(--accent-1);
  color: white;
}

form {
  max-width: 500px;
  margin: 30px auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--accent-2);
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--accent-4);
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 10px rgba(67, 160, 71, 0.2);
}

.form-disclaimer {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(200, 230, 201, 0.15);
  border-left: 4px solid var(--accent-1);
}

footer {
  background: linear-gradient(135deg, rgba(67, 160, 71, 0.05) 0%, rgba(200, 230, 201, 0.1) 100%);
  padding: 60px 40px 30px;
  margin-top: 100px;
  border-top: 2px solid var(--accent-4);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-section p, .footer-section a {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-links a {
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(67, 160, 71, 0.2);
  padding-top: 20px;
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
}

.disclaimer {
  background: rgba(200, 230, 201, 0.2);
  padding: 30px;
  border-left: 5px solid var(--accent-1);
  border-radius: 6px;
  margin: 30px 0;
  color: var(--text-dark);
}

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

.disclaimer p {
  color: var(--text-light);
  line-height: 1.8;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  padding: 30px;
  border-left: 5px solid var(--accent-1);
  background: rgba(200, 230, 201, 0.1);
  margin: 20px 0;
  border-radius: 6px;
}

.quote strong {
  display: block;
  font-style: normal;
  margin-top: 15px;
  color: var(--accent-2);
}

.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;
}

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

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

.modal-content {
  background-color: var(--bg-primary);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  font-weight: bold;
  color: var(--text-dark);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(249, 255, 246, 0.98);
  padding: 20px 40px;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-top: 3px solid var(--accent-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-banner.hidden {
  display: none;
}

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

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

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

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

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

.cookie-reject {
  background: white;
  color: var(--accent-1);
  border: 2px solid var(--accent-1);
}

.cookie-reject:hover {
  background: var(--accent-1);
  color: white;
}

.cookie-more {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--text-light);
}

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

.success-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  z-index: 2500;
  animation: slideUp 0.3s ease;
}

.success-message.active {
  display: block;
}

.success-message h2 {
  color: var(--accent-1);
  border: none;
  margin-bottom: 15px;
}

.success-message p {
  color: var(--text-light);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  nav {
    gap: 20px;
    font-size: 12px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  section {
    padding: 80px 0;
  }

  .container-content, .container-full {
    padding: 0 20px;
  }

  .row.two-cols {
    grid-template-columns: 1fr;
  }

  .row.three-cols {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  form {
    padding: 25px;
  }

  .hero {
    margin-top: 60px;
  }

  .hero h1 {
    font-size: 48px;
  }
}
