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

:root {
  --primary-color: #225733;
  --accent-light: #F2EFEA;
  --accent-orange: #D98A29;
  --accent-teal: #5AA498;
  --text-dark: #222222;
  --text-light: #666666;
  --border-light: #E8E8E8;
}

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

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

body {
  padding-top: 80px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

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

header .logo img {
  width: 40px;
  height: 40px;
}

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

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

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

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

/* Hero Section */
.hero {
  background-color: #fafafa;
  padding: 80px 0;
  position: relative;
}

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

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: left;
}

.hero p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero img {
  width: 100%;
  height: auto;
  max-width: 500px;
}

/* Sections */
section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

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

.section-two-col:nth-child(even) {
  direction: rtl;
}

.section-two-col:nth-child(even) > * {
  direction: ltr;
}

.section-two-col img {
  width: 100%;
  height: auto;
  max-width: 450px;
}

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

.card {
  background-color: var(--accent-light);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(34, 87, 51, 0.1);
}

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

.card h3 {
  margin-bottom: 15px;
}

.disclaimer-box {
  background-color: #f5f5f5;
  border-left: 4px solid var(--accent-orange);
  padding: 25px;
  margin: 40px 0;
  border-radius: 4px;
}

.disclaimer-box p {
  font-size: 15px;
  color: var(--text-dark);
  margin: 0;
}

.cta {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background-color 0.3s;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.cta:hover {
  background-color: var(--accent-teal);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--accent-light);
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-light);
}

footer a {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.3s;
}

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

footer p {
  font-size: 14px;
  color: var(--accent-light);
  line-height: 1.8;
}

footer .footer-bottom {
  border-top: 1px solid rgba(242, 239, 234, 0.2);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-text {
  flex: 1;
  font-size: 14px;
  color: var(--text-light);
  margin-right: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

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

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

.cookie-decline {
  background-color: #e0e0e0;
  color: var(--text-dark);
}

.cookie-decline:hover {
  background-color: #d0d0d0;
}

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

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

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 40px auto;
  background-color: var(--accent-light);
  padding: 40px;
  border-radius: 8px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

/* Responsive */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  header .container {
    padding: 10px 0;
  }

  header .logo {
    font-size: 18px;
  }

  header nav ul {
    gap: 15px;
  }

  header nav a {
    font-size: 13px;
  }

  .hero {
    padding: 40px 0;
  }

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

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  section {
    padding: 50px 0;
  }

  section h2 {
    font-size: 28px;
  }

  section h3 {
    font-size: 20px;
  }

  .section-two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

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

  .cookie-text {
    margin-right: 0;
    margin-bottom: 10px;
  }

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

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