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

html, body {
  scroll-behavior: smooth;
}

:root {
  --primary-green: #2E5D34;
  --accent-amber: #D9A066;
  --accent-blue: #4A6C8A;
  --light-parchment: #F5F0E1;
  --white: #FFFFFF;
  --dark-gray: #2A2A2A;
  --medium-gray: #555555;
  --light-gray: #F8F8F8;
  --border-color: #E0E0E0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.78;
  font-size: 1.14rem;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  letter-spacing: -1px;
}

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  line-height: 1.2;
}

h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
  line-height: 1.3;
}

h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-green);
}

p {
  margin-bottom: 1.25rem;
  line-height: 1.78;
}

strong {
  font-weight: 700;
  color: var(--accent-amber);
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.logo:hover {
  color: var(--accent-amber);
}

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

nav.show {
  display: flex;
}

nav a {
  color: var(--dark-gray);
  font-size: 1rem;
  transition: color 0.3s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-green);
}

.nav-toggle.show {
  display: block;
}

@media (min-width: 768px) {
  nav {
    display: flex !important;
  }
  .nav-toggle {
    display: none !important;
  }
}

footer {
  background-color: var(--dark-gray);
  color: var(--light-parchment);
  padding: 4rem 2rem 2rem;
  margin-top: 8rem;
}

footer a {
  color: var(--accent-amber);
}

footer a:hover {
  color: var(--light-parchment);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(217, 160, 102, 0.2);
  padding-bottom: 2rem;
}

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

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

.footer-section ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  padding-top: 1.5rem;
  color: rgba(217, 160, 102, 0.8);
}

.hero {
  background: linear-gradient(135deg, rgba(46, 93, 52, 0.05) 0%, rgba(217, 160, 102, 0.05) 100%);
  padding: 6rem 2rem;
  text-align: center;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

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

.section {
  padding: 180px 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section:nth-child(even) {
  background-color: var(--light-gray);
}

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

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

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

.section-image {
  overflow: hidden;
  border-radius: 8px;
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.section-image:hover img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section {
    padding: 3rem 1rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(46, 93, 52, 0.1);
  border-color: var(--accent-amber);
}

.card-image {
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, rgba(46, 93, 52, 0.1) 0%, rgba(217, 160, 102, 0.1) 100%);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-bottom: 0.75rem;
}

.card-body p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

.card-link {
  color: var(--accent-amber);
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  color: var(--accent-blue);
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-amber);
  box-shadow: 0 4px 12px rgba(46, 93, 52, 0.1);
}

.faq-question {
  background-color: var(--light-gray);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: rgba(46, 93, 52, 0.05);
}

.faq-question:hover {
  background-color: rgba(217, 160, 102, 0.05);
}

.faq-question h4 {
  margin: 0;
  color: var(--primary-green);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--accent-amber);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  padding: 1.5rem;
  background-color: var(--white);
  color: var(--medium-gray);
  border-top: 1px solid var(--border-color);
  line-height: 1.8;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, rgba(46, 93, 52, 0.9) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin: 4rem 0;
}

.cta-section h2 {
  color: var(--light-parchment);
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent-amber);
  color: var(--dark-gray);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 0.5rem;
}

.cta-button:hover {
  background: var(--light-parchment);
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 160, 102, 0.3);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-green);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-amber);
  box-shadow: 0 0 0 3px rgba(217, 160, 102, 0.1);
}

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

.form-disclaimer {
  background-color: rgba(217, 160, 102, 0.1);
  padding: 1rem;
  border-left: 4px solid var(--accent-amber);
  margin: 1.5rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--medium-gray);
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

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

.submit-button:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 93, 52, 0.2);
}

.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content h1 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.thank-you-content p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

.disclaimer-box {
  background-color: var(--light-gray);
  border-left: 4px solid var(--accent-amber);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: var(--medium-gray);
  margin-bottom: 0.75rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(46, 93, 52, 0.1);
  border-color: var(--accent-amber);
}

.blog-card-image {
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, rgba(46, 93, 52, 0.1) 0%, rgba(217, 160, 102, 0.1) 100%);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-content h3 {
  margin-bottom: 0.75rem;
  color: var(--primary-green);
}

.blog-card-content p {
  flex-grow: 1;
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-card-link {
  color: var(--accent-amber);
  font-weight: 600;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.blog-card-link:hover {
  color: var(--accent-blue);
}

.blog-post {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.blog-post-image {
  width: 100%;
  max-height: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.blog-content {
  line-height: 1.85;
  color: var(--medium-gray);
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-amber);
  font-weight: 600;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--accent-blue);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-gray);
  color: var(--light-parchment);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cookie-banner.show {
  display: block;
  max-height: 300px;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-amber);
}

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

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

.cookie-btn-accept {
  background: var(--accent-amber);
  color: var(--dark-gray);
}

.cookie-btn-accept:hover {
  background: var(--light-parchment);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--light-parchment);
  border: 1px solid var(--light-parchment);
}

.cookie-btn-reject:hover {
  background: rgba(217, 160, 102, 0.1);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-buttons {
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
  }
}

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.fade-in-delay-1 {
  animation: fadeIn 0.6s ease 0.2s forwards;
  opacity: 0;
}

.fade-in-delay-2 {
  animation: fadeIn 0.6s ease 0.4s forwards;
  opacity: 0;
}

.fade-in-delay-3 {
  animation: fadeIn 0.6s ease 0.6s forwards;
  opacity: 0;
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  .section {
    padding: 2rem 1rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
