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

html, body {
  height: 100%;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  color: #2E8B57;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1d5a3d;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header .navbar-brand {
  color: #2E8B57;
  font-weight: 700;
  font-size: 1.5rem;
}

header .navbar-brand:hover {
  color: #1d5a3d;
}

main {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
}

footer {
  background-color: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  padding: 3rem 0 2rem;
  margin-top: 3rem;
  color: #666;
  font-size: 0.95rem;
}

footer a {
  color: #2E8B57;
}

footer a:hover {
  text-decoration: underline;
}

.footer-section h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

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

.hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: #fff;
}

.section {
  padding: 3rem 0;
}

.section h2 {
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.section-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.content-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.content-row.reverse {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 1;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card h3 {
  color: #2E8B57;
  margin-bottom: 1rem;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.disclaimer {
  background-color: #f0f8f4;
  border-left: 4px solid #2E8B57;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer p {
  margin-bottom: 0;
  color: #333;
  font-size: 0.95rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2E8B57;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: #1d5a3d;
}

.btn-secondary {
  background-color: #d0d0d0;
  color: #333;
}

.btn-secondary:hover {
  background-color: #b8b8b8;
}

.cta-section {
  background-color: #f0f8f4;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-section h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}

.faq-item h3 {
  color: #2E8B57;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  margin-bottom: 0;
  color: #555;
}

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

.navbar-nav a {
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

.navbar-nav a:hover {
  color: #1d5a3d;
}

.navbar-toggler {
  display: none;
}

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

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

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

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

.cookie-btn-accept {
  background-color: #2E8B57;
  color: #fff;
}

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

.cookie-btn-decline {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    height: 300px;
  }

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

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

  .content-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .content-row.reverse {
    flex-direction: column;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .navbar-nav {
    flex-wrap: wrap;
    gap: 0;
  }

  .navbar-nav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  main {
    margin-top: 60px;
  }

  header {
    padding: 0.75rem 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

  .section {
    padding: 1.5rem 0;
  }

  .container {
    padding: 0 0.75rem;
  }

  header .navbar-brand {
    font-size: 1.2rem;
  }
}
