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

body {
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #333;
  background: #fff;
}

.navbar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #33691E;
  text-decoration: none;
}

.navbar-brand:hover {
  color: #33691E;
  opacity: 0.85;
}

.navbar-nav .nav-link {
  color: #333;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
  color: #33691E;
}

.content-wrapper {
  padding-top: 80px;
}

.hero-section {
  background: #f9f9f9;
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.hero-section h1 {
  font-size: 2.5rem;
  color: #33691E;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-section p {
  font-size: 1.15rem;
  color: #555;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

section {
  margin-bottom: 4rem;
}

h1 {
  font-size: 2.5rem;
  color: #33691E;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

h2 {
  font-size: 1.9rem;
  color: #33691E;
  margin-bottom: 1.25rem;
  margin-top: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.45rem;
  color: #33691E;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

ul, ol {
  margin-bottom: 1.25rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.content-image-left {
  float: left;
  max-width: 45%;
  margin: 0.5rem 2rem 1rem 0;
}

.content-image-right {
  float: right;
  max-width: 45%;
  margin: 0.5rem 0 1rem 2rem;
}

.disclaimer-box {
  background: #f5f5f5;
  border-left: 4px solid #33691E;
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  margin-top: 0;
}

.cta-section {
  background: #f9f9f9;
  padding: 3rem;
  border-radius: 4px;
  text-align: center;
  margin: 3rem 0;
}

.btn-custom {
  background: #33691E;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}

.btn-custom:hover {
  opacity: 0.85;
  color: #fff;
  text-decoration: none;
}

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

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

.contact-form {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 4px;
}

.form-group label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid #ddd;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 4px;
}

.form-control:focus {
  border-color: #33691E;
  outline: none;
  box-shadow: none;
}

.footer {
  background: #f5f5f5;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid #e0e0e0;
}

.footer h4 {
  font-size: 1.2rem;
  color: #33691E;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

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

.footer a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: #33691E;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #e0e0e0;
  color: #777;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #33691E;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cookie-banner button {
  background: #33691E;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.cookie-banner button:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .content-image-left,
  .content-image-right {
    float: none;
    max-width: 100%;
    margin: 1.5rem 0;
  }
  
  .cta-section {
    padding: 2rem 1rem;
  }
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
