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

:root {
  --primary-color: #2E8B57;
  --accent-gold: #FFD700;
  --accent-gray: #A9A9A9;
  --accent-light: #F0F8FF;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #fafafa;
  --border-color: #e0e0e0;
}

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

html, body {
  height: 100%;
  font-family: 'Lora', serif;
  color: var(--text-dark);
  line-height: 1.6;
}

body {
  background-color: #fff;
}

.container-lg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-md {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 32px;
  height: 32px;
  display: block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 70px;
  padding-bottom: 0;
}

section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

section:last-of-type {
  border-bottom: none;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.2;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
  line-height: 1.2;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

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

.hero-section {
  background-color: var(--accent-light);
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #1f6b3f;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(46, 139, 87, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

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

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

.two-column.reverse > * {
  direction: ltr;
}

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

.column-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

.column-content h2 {
  margin-bottom: 20px;
}

.column-content p {
  margin-bottom: 16px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  display: block;
}

.card h3 {
  margin-bottom: 12px;
  color: var(--primary-color);
}

.card p {
  font-size: 14px;
  line-height: 1.6;
}

.accent-text {
  color: var(--primary-color);
  font-weight: 600;
}

.highlight {
  background-color: rgba(255, 215, 0, 0.2);
  padding: 2px 6px;
  border-radius: 2px;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

.quote-section {
  background-color: var(--accent-light);
  padding: 60px;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  margin: 40px 0;
}

.quote-section p {
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  margin: 0;
}

footer {
  background-color: var(--text-dark);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

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

.footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p, .footer-section a {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.disclaimer {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 4px;
  padding: 20px;
  margin: 30px 0;
  font-size: 14px;
  color: var(--text-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: white;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 999;
  display: none;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner.show {
  display: flex;
}

.cookie-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #1f6b3f;
}

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

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

.cookie-learn {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.5);
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

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

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

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.info-block h3 {
  margin-bottom: 12px;
  color: var(--primary-color);
}

.thank-you-message {
  text-align: center;
  padding: 80px 20px;
}

.thank-you-message h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.thank-you-message p {
  font-size: 18px;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-color);
  cursor: pointer;
  user-select: none;
  margin-bottom: 12px;
}

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

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

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

  .contact-info {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  nav ul {
    gap: 20px;
  }

  .hero-section {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    gap: 30px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .header-content {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
  }

  nav ul {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  nav a {
    font-size: 13px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

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

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

  .contact-info {
    grid-template-columns: 1fr;
  }

  section {
    padding: 50px 0;
  }

  .quote-section {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  p, li {
    font-size: 14px;
  }

  .logo {
    font-size: 20px;
  }

  nav ul {
    gap: 10px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .card {
    padding: 20px;
  }

  .container-lg,
  .container-md {
    padding: 0 15px;
  }

  section {
    padding: 40px 0;
  }
}
