* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 15px 0;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 24px;
  font-weight: 700;
  color: #32CD32;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.logo:hover {
  opacity: 0.8;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #32CD32;
  text-decoration: none;
}
.main-content {
  margin-top: 70px;
}
.hero-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}
.btn-primary {
  background-color: #32CD32;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #28a428;
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
  font-weight: 700;
}
.section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #32CD32;
  font-weight: 600;
}
.section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.blog-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.blog-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}
.blog-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}
.blog-card a {
  color: #32CD32;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.blog-card a:hover {
  color: #28a428;
  text-decoration: underline;
}
.faq-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.faq-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}
.faq-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}
.cta-section {
  background-color: #32CD32;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}
.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #fff;
}
.disclaimer-box {
  background-color: #f0f0f0;
  border-left: 4px solid #32CD32;
  padding: 25px;
  margin: 40px 0;
  border-radius: 5px;
}
.disclaimer-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}
.disclaimer-box p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}
footer {
  background-color: #2c2c2c;
  color: #fff;
  padding: 50px 20px 30px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}
.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #32CD32;
  font-weight: 600;
}
.footer-column p,
.footer-column a {
  font-size: 15px;
  color: #ccc;
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer-column a:hover {
  color: #32CD32;
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #999;
  font-size: 14px;
}
.footer-disclaimer {
  font-size: 14px;
  color: #999;
  font-style: italic;
  margin-top: 20px;
  text-align: center;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #32CD32;
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cookie-content p {
  margin: 0;
  font-size: 15px;
  color: #ccc;
}
.cookie-content button {
  background-color: #32CD32;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.cookie-content button:hover {
  background-color: #28a428;
}
@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
  }
  .nav-links a {
    font-size: 14px;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .two-column {
    grid-template-columns: 1fr;
  }
  .section h2 {
    font-size: 28px;
  }
  .section h3 {
    font-size: 20px;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
