:root {
  --primary-bg: #E0F2F7;
  --accent-green: #4CAF50;
  --accent-blue: #2196F3;
  --accent-yellow: #FFC107;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --border-color: #D0E8F2;
  --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: var(--shadow-light);
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-green) !important;
  margin-right: 30px;
}

.navbar-brand img {
  height: 40px;
  margin-right: 10px;
  vertical-align: middle;
}

.nav-link {
  color: var(--text-dark) !important;
  margin-right: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 15px;
}

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

.nav-link.active {
  color: var(--accent-green) !important;
  border-bottom: 2px solid var(--accent-green);
}

section {
  padding: 80px 0;
}

section:nth-child(even) {
  background-color: var(--primary-bg);
}

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

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

h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  word-spacing: 0.1em;
}

h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 30px;
}

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

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

.hero-section {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: var(--white);
  padding: 100px 40px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-section h1 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 20px;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.disclaimer-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 30px;
  font-weight: 500;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

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

.two-column.reverse .text-col {
  order: 2;
}

.two-column.reverse .image-col {
  order: 1;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .two-column.reverse .text-col {
    order: 1;
  }

  .two-column.reverse .image-col {
    order: 2;
  }
}

.image-col img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.text-col h2 {
  color: var(--text-dark);
  margin-bottom: 25px;
}

.text-col p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-green);
}

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

.card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 0;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-green);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn:hover {
  background-color: #45a049;
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--accent-blue);
  margin-right: 15px;
}

.btn-secondary:hover {
  background-color: #0b7dda;
}

.faq-item {
  background-color: var(--white);
  border-left: 4px solid var(--accent-green);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: var(--shadow-light);
}

.faq-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  font-size: 20px;
  color: var(--accent-green);
}

.faq-answer {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  display: none;
}

.faq-answer.active {
  display: block;
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

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

.footer-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
}

.disclaimer-footer {
  background-color: var(--primary-bg);
  color: var(--text-dark);
  font-size: 14px;
  padding: 20px 40px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.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: var(--white);
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.modal-header h2 {
  margin: 0;
  font-size: 28px;
}

.close-btn {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

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

.modal-body {
  color: var(--text-light);
  line-height: 1.8;
}

.modal-body h3 {
  color: var(--accent-green);
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 18px;
}

.modal-body p {
  margin-bottom: 12px;
  font-size: 15px;
}

.modal-body ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.modal-body li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 20px 40px;
  z-index: 1500;
  border-top: 1px solid var(--border-color);
}

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

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
}

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

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

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

.cookie-accept:hover {
  background-color: #45a049;
}

.cookie-reject {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.cookie-learn {
  background: none;
  color: var(--accent-green);
  border: 1px solid var(--accent-green);
  padding: 10px 20px;
}

.cookie-learn:hover {
  background-color: rgba(76, 175, 80, 0.1);
}

.thank-you-modal {
  text-align: center;
}

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

.thank-you-modal p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 0;
}

.form-section {
  background-color: var(--primary-bg);
  padding: 60px 40px;
  border-radius: 12px;
  max-width: 600px;
  margin: 40px auto 0;
}

.form-section h3 {
  text-align: center;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.form-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 25px;
  font-style: italic;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background-color: var(--accent-green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.myth-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent-yellow);
  box-shadow: var(--shadow-light);
}

.myth-item h4 {
  color: var(--accent-green);
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}

.myth-item p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 15px;
}

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

  h2 {
    font-size: 26px;
  }

  section {
    padding: 50px 0;
  }

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

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

  .two-column {
    gap: 30px;
  }

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

  .footer-divider {
    padding: 20px;
  }

  .modal-content {
    padding: 25px;
  }

  .cookie-banner.show {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 20px;
  }

  .cookie-text {
    font-size: 13px;
  }

  .cookie-buttons {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    padding: 12px;
  }
}
