@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --primary: #1B4C30;
  --accent-light: #F0E6D2;
  --accent-green: #A3CC81;
  --accent-gray: #5A7E6E;
  --white: #FFFFFF;
  --text-dark: #1B1B1B;
  --text-light: #555555;
  --border-light: #E8E8E8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  padding: 1rem 2rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
  margin: 0 auto;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
}

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

.nav-links a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}

main {
  margin-top: 80px;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0;
}

section {
  padding: 4rem 2rem;
}

.hero {
  background: linear-gradient(135deg, rgba(27, 76, 48, 0.1) 0%, rgba(163, 204, 129, 0.05) 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 10px 40px rgba(27, 76, 48, 0.15);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--accent-green);
}

.section-title h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 90%;
  margin: 0 auto;
}

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

.two-column-reverse > :first-child {
  order: 2;
}

.two-column-reverse > :last-child {
  order: 1;
}

.two-column img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(27, 76, 48, 0.1);
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .two-column-reverse > :first-child {
    order: 0;
  }
  
  .two-column-reverse > :last-child {
    order: 0;
  }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 90%;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(27, 76, 48, 0.15);
}

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

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

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

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: var(--accent-gray);
  transform: scale(1.05);
  color: var(--white);
}

.cta-button-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.65rem 1.8rem;
}

.cta-button-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.centered-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.info-box {
  background-color: var(--accent-light);
  border-left: 4px solid var(--primary);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem auto;
  max-width: 90%;
}

.info-box h3 {
  color: var(--primary);
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  color: var(--accent-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-section a {
  display: block;
  transition: color 0.3s ease;
}

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

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

.footer-disclaimer {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1rem 0;
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 76, 48, 0.1);
}

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-message {
  flex: 1;
}

.cookie-message p {
  color: var(--white);
  margin: 0;
  font-size: 0.9rem;
}

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

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

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

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

.cookie-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-decline:hover {
  background-color: var(--white);
  color: var(--text-dark);
}

.cookie-learn {
  background-color: transparent;
  color: var(--white);
  text-decoration: underline;
  padding: 0.5rem 0;
}

.cookie-learn:hover {
  color: var(--accent-green);
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-button {
    width: 100%;
    text-align: center;
  }
}

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

.policy-section h2 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-section p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section ul, .policy-section ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

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

.faq-question:hover {
  background-color: var(--accent-green);
  color: var(--white);
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-toggle.open {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-light);
  display: none;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
}

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

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
}

.thank-you-content h1 {
  color: var(--primary);
}

.thank-you-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.breadcrumb {
  max-width: 90%;
  margin: 1rem auto;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 1rem 0 0 0;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb span {
  margin: 0 0.5rem;
}
