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

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

h1 {
  font-size: 2.55rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #222;
}

h2 {
  font-size: 1.95rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #222;
}

h3 {
  font-size: 1.48rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #222;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #388E3C;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #388E3C;
}

.navbar-brand:hover {
  color: #388E3C;
  opacity: 0.8;
}

.navbar-nav .nav-link {
  color: #555;
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #388E3C;
}

.hero-section {
  background: #f9f9f9;
  padding: 7rem 0 4rem 0;
  margin-top: 60px;
}

.hero-section h1 {
  color: #222;
}

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

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

.content-section {
  padding: 4rem 0;
}

.content-section:nth-child(even) {
  background: #fafafa;
}

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

.btn-custom {
  background: #388E3C;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-custom:hover {
  opacity: 0.9;
  color: #fff;
}

.footer {
  background: #2c2c2c;
  color: #ddd;
  padding: 3rem 0 1.5rem 0;
  margin-top: 3rem;
}

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

.footer a {
  color: #ddd;
}

.footer a:hover {
  color: #388E3C;
}

.footer p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

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

.faq-item {
  margin-bottom: 2rem;
}

.faq-item h3 {
  color: #388E3C;
}

.form-control:focus {
  border-color: #388E3C;
  box-shadow: 0 0 0 0.2rem rgba(56, 142, 60, 0.15);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c2c2c;
  color: #fff;
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

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

.cookie-banner .btn {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  body {
    font-size: 1rem;
  }
  
  .hero-section {
    padding: 5rem 0 3rem 0;
  }
  
  .content-section {
    padding: 2.5rem 0;
  }
  
  .content-image {
    max-width: 100%;
    margin: 1rem auto;
    display: block;
  }
}
