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

:root {
  --moss-green: #4a7c5e;
  --bright-yellow: #ffd700;
  --soft-cream: #f5f1e8;
  --earth-brown: #8b7355;
  --text-dark: #2c2c2c;
  --border-light: #e8e3d8;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--moss-green);
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--moss-green);
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--earth-brown);
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

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

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

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

.navbar-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--bright-yellow);
  transition: width 0.3s ease;
}

.navbar-nav a:hover {
  color: var(--moss-green);
}

.navbar-nav a:hover:after {
  width: 100%;
}

.navbar-nav a.active {
  color: var(--moss-green);
}

.navbar-nav a.active:after {
  width: 100%;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1.5rem;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }
}

.container-fluid {
  padding: 0;
}

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

.section-alt {
  background-color: var(--soft-cream);
}

.section-full {
  padding: 0;
  max-width: 100%;
}

.hero {
  background: linear-gradient(135deg, rgba(74, 124, 94, 0.85) 0%, rgba(139, 115, 85, 0.75) 100%);
  background-attachment: fixed;
  color: white;
  padding: 8rem 2rem;
  text-align: left;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.hero p {
  color: rgba(255,255,255,0.95);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--moss-green);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 0.5rem 0.5rem 0.5rem 0;
}

.btn:hover {
  background-color: var(--earth-brown);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  color: white;
}

.btn-secondary {
  background-color: var(--bright-yellow);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: #ffcd00;
  color: var(--text-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--moss-green);
  border: 2px solid var(--moss-green);
}

.btn-outline:hover {
  background-color: var(--moss-green);
  color: white;
}

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

.benefit-item {
  padding: 2rem;
  background-color: var(--soft-cream);
  border-radius: 8px;
  border-left: 4px solid var(--bright-yellow);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.benefit-item h3 {
  color: var(--moss-green);
  margin-bottom: 1rem;
}

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

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

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

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

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

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

.card {
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 2rem;
}

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

.card-body p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.list-styled {
  list-style: none;
  margin: 2rem 0;
}

.list-styled li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--border-light);
  font-size: 1.05rem;
}

.list-styled li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bright-yellow);
  font-weight: bold;
  font-size: 1.3rem;
}

.list-styled li:last-child {
  border-bottom: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

thead {
  background-color: var(--moss-green);
  color: white;
}

th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

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

tbody tr:hover {
  background-color: var(--soft-cream);
}

.disclaimer-box {
  background-color: #fff9e6;
  border-left: 4px solid var(--bright-yellow);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.disclaimer-box strong {
  color: var(--earth-brown);
}

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--moss-green);
  box-shadow: 0 0 0 3px rgba(74, 124, 94, 0.1);
}

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

footer {
  background-color: var(--text-dark);
  color: white;
  padding: 4rem 2rem;
  margin-top: 6rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  color: var(--bright-yellow);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

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

.footer-section ul li a {
  color: #ccc;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: var(--bright-yellow);
}

.footer-info p {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  color: #ccc;
}

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

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

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

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

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

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

.cookie-accept:hover {
  background-color: var(--earth-brown);
}

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

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

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

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

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

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

.hidden {
  display: none;
}

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

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

.slide-in {
  animation: slideIn 0.6s ease-out;
}

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

.highlight-yellow {
  color: var(--bright-yellow);
  font-weight: 600;
}

.highlight-green {
  color: var(--moss-green);
  font-weight: 600;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: 3rem 0;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-4 { padding: 2rem 0; }
.py-5 { padding: 3rem 0; }
.px-2 { padding: 0 1rem; }
