:root {
  --color-bg: #f9fcf9;
  --color-accent-light: #5e9c7e;
  --color-accent-dark: #2f5f4a;
  --color-white: #fdfbf5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--color-bg);
  color: #333;
  line-height: 1.84;
  font-weight: 400;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 1.5rem;
  color: var(--color-accent-dark);
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}

/* Header */
header {
  background-color: var(--color-white);
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 1rem 0;
  background-color: rgba(253, 251, 245, 0.95);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-accent-dark);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--color-accent-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Container */
.container-full {
  max-width: none;
  padding: 0;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 160px;
}

/* Hero */
.hero {
  background-color: var(--color-accent-light);
  color: var(--color-white);
  padding: 120px 160px;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-white);
}

/* Sections */
section {
  padding: 80px 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

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

section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }
section:nth-child(6) { animation-delay: 0.6s; }
section:nth-child(7) { animation-delay: 0.7s; }
section:nth-child(8) { animation-delay: 0.8s; }
section:nth-child(9) { animation-delay: 0.9s; }

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

.section-bg-mint {
  background-color: rgba(94, 156, 126, 0.08);
}

/* Text Sections */
.section-text h2 {
  margin-bottom: 2rem;
}

.section-text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.84;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > div {
  direction: ltr;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid rgba(94, 156, 126, 0.2);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--color-accent-light);
  box-shadow: 0 8px 24px rgba(94, 156, 126, 0.15);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Tables */
.table-container {
  overflow-x: auto;
  margin: 2rem 0;
}

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

tbody tr:nth-child(odd) {
  background-color: rgba(94, 156, 126, 0.08);
}

th {
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid rgba(94, 156, 126, 0.2);
}

/* FAQ */
.accordion {
  max-width: 100%;
}

.accordion-item {
  background-color: var(--color-white);
  border: 2px solid rgba(94, 156, 126, 0.2);
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--color-accent-light);
}

.accordion-header {
  background-color: transparent;
  border: none;
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-accent-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background-color: rgba(94, 156, 126, 0.05);
}

.accordion-toggle {
  color: var(--color-accent-light);
  font-weight: 800;
  transition: transform 0.3s ease;
}

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

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.accordion-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  background-color: var(--color-accent-light);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent-dark);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(94, 156, 126, 0.3);
}

/* Form */
.form-container {
  max-width: 500px;
  margin: 2rem auto;
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid rgba(94, 156, 126, 0.2);
}

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

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

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(94, 156, 126, 0.3);
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent-light);
  box-shadow: 0 0 8px rgba(94, 156, 126, 0.2);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: rgba(94, 156, 126, 0.08);
  border-left: 3px solid var(--color-accent-light);
  border-radius: 4px;
}

/* Disclaimer */
.disclaimer-section {
  background-color: rgba(94, 156, 126, 0.08);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent-light);
  margin: 2rem 0;
}

.disclaimer-section h3 {
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
}

.disclaimer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* Footer */
footer {
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  padding: 3rem 160px 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

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

.footer-disclaimer {
  color: var(--color-accent-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Modal */
.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(--color-white);
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-accent-dark);
}

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

.modal h2 {
  margin-top: 0;
}

.modal p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  padding: 1.5rem 160px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

#cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

.cookie-btn.accept:hover {
  background-color: #4a8566;
}

/* Responsive */
@media (max-width: 1200px) {
  .header-container,
  .container,
  footer {
    padding: 0 80px;
  }

  .hero,
  .hero-content {
    padding: 80px 80px;
  }

  nav {
    gap: 1.5rem;
  }

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

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

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

  header {
    padding: 1rem 0;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  nav a {
    font-size: 0.9rem;
  }

  .hero {
    padding: 60px 20px;
    margin-top: 150px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 40px 0;
  }

  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .two-col.reverse > div {
    direction: ltr;
  }

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

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

  #cookie-banner {
    padding: 1rem 20px;
    flex-direction: column;
    gap: 1rem;
  }

  #cookie-banner p {
    margin: 0;
  }

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

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

  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-container,
  .container,
  footer {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    margin-top: 120px;
  }

  nav {
    gap: 0.8rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  table {
    font-size: 0.85rem;
  }

  th, td {
    padding: 0.75rem 0.5rem;
  }
}
