:root {
  --bg-primary: #f9f9f5;
  --bg-light: #fefcf6;
  --accent-bright: #4a8c52;
  --accent-dark: #2e5c38;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0dcd0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.82;
  color: var(--text-dark);
  background-color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.1px;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

header {
  background-color: var(--bg-primary);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

header.scrolled {
  opacity: 0.95;
  transform: scale(0.8);
  transform-origin: top;
}

nav.navbar {
  padding: 1.5rem 0;
  max-width: 1640px;
  margin: 0 auto;
  padding-left: 140px;
  padding-right: 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand:hover {
  color: var(--accent-bright);
}

.navbar-brand img {
  width: 32px;
  height: 32px;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav a:hover {
  color: var(--accent-bright);
}

main {
  margin-top: 80px;
}

.hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-light) 100%);
  width: 100%;
  padding: 80px 140px;
  text-align: center;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 1240px;
  width: 100%;
}

.hero img {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.hero h1 {
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

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

section {
  padding: 80px 140px;
  max-width: 1640px;
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

section:hover {
  transform: scale(1.04);
}

.section-title {
  color: var(--accent-dark);
  margin-bottom: 2rem;
}

.section-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-layout.reverse {
  grid-template-columns: 1fr 1fr;
}

.section-layout.reverse img {
  order: 2;
}

.section-layout.reverse > div {
  order: 1;
}

.section-layout img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-height: 400px;
  object-fit: cover;
}

.text-content {
  padding: 2rem;
}

.text-content h3 {
  color: var(--accent-bright);
  margin-bottom: 1.5rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-12px);
  border-color: var(--accent-bright);
  box-shadow: 0 8px 16px rgba(74, 140, 82, 0.15);
}

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

.card h3 {
  color: var(--accent-bright);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

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

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

table th {
  padding: 1rem;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

table tbody tr:nth-child(odd) {
  background-color: var(--bg-light);
}

table tbody tr:hover {
  background-color: #f0ebe0;
}

.accordion {
  margin-top: 2rem;
}

.accordion-item {
  border: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--bg-light);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border-left: 3px solid var(--accent-bright);
  font-weight: 600;
  color: var(--accent-dark);
}

.accordion-header:hover {
  background-color: #f0ebe0;
}

.accordion-item.active .accordion-header {
  background-color: #e8dcd0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

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

.accordion-content p {
  color: var(--text-light);
  margin: 0;
}

.quote-block {
  background-color: var(--bg-light);
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
  border-radius: 8px;
  border-top: 3px solid var(--accent-bright);
}

.quote-block p {
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(90deg, var(--accent-bright) 0%, var(--accent-bright) 100%);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background-size: 200% 100%;
  background-position: 100% 0;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background-position: 0 0;
  box-shadow: 0 4px 12px rgba(74, 140, 82, 0.3);
}

.contact-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-primary) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-details p {
  margin: 0.5rem 0;
  color: var(--text-light);
}

.contact-details strong {
  color: var(--accent-bright);
}

form {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--accent-dark);
  font-family: 'Montserrat', sans-serif;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Open Sans', 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(--accent-bright);
  box-shadow: 0 0 0 3px rgba(74, 140, 82, 0.1);
}

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

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent-bright);
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

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

.footer-section a:hover {
  color: white;
  text-decoration: underline;
}

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

.educational-disclaimer {
  background-color: rgba(74, 140, 82, 0.1);
  border: 1px solid var(--accent-bright);
  border-radius: 4px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.educational-disclaimer p {
  margin: 0;
  color: var(--accent-dark);
  font-weight: 600;
}

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

.modal.show {
  display: block;
}

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

.modal-content {
  background-color: var(--bg-primary);
  margin: 50px auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

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

.modal-close {
  color: var(--text-dark);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
  color: var(--accent-bright);
}

.modal h2 {
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
}

.modal p {
  color: var(--text-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-dark);
  color: white;
  padding: 1.5rem 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-text {
  flex: 1;
  margin-right: 2rem;
  font-size: 0.9rem;
}

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

.cookie-buttons button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

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

.cookie-buttons .accept:hover {
  background-color: #3a7c42;
}

.cookie-buttons .reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

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

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

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

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

.thank-you-modal h2 {
  color: var(--accent-bright);
}

.thank-you-modal p {
  font-size: 1.1rem;
  color: var(--text-light);
}

@media (max-width: 1200px) {
  header,
  nav.navbar,
  section,
  footer,
  .cookie-banner {
    padding-left: 80px;
    padding-right: 80px;
  }
  
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-layout {
    grid-template-columns: 1fr;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  header,
  nav.navbar,
  section,
  footer,
  .cookie-banner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  nav.navbar {
    flex-direction: column;
    gap: 1rem;
  }
  
  .navbar-nav {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: center;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 3rem 1.5rem;
    min-height: auto;
  }
  
  .modal-content {
    width: 95%;
    margin: 20px auto;
  }
  
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .cookie-text {
    margin-right: 0;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }
}
