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

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

.accent-color {
  color: #2E8B57;
}

.bg-accent {
  background-color: #2E8B57;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 15px 0;
}

.header-fixed .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #2E8B57;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #2E8B57;
}

.hero-section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  margin-top: 70px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
}

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

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.content-section {
  padding: 80px 0;
}

.content-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2E8B57;
}

.content-section h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.content-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.btn-custom {
  background-color: #2E8B57;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-custom:hover {
  background-color: #236B43;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46,139,87,0.3);
}

.faq-item {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2E8B57;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.blog-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: #333;
  display: block;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-decoration: none;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

.blog-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2E8B57;
}

.disclaimer-box {
  background: #f0f8f4;
  border-left: 4px solid #2E8B57;
  padding: 20px;
  margin: 40px 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: #2E8B57;
  margin-bottom: 15px;
}

.footer {
  background: #333;
  color: #fff;
  padding: 50px 0 20px;
  margin-top: 80px;
}

.footer a {
  color: #2E8B57;
  text-decoration: none;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: #2E8B57;
  margin-bottom: 15px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #555;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.form-control:focus {
  border-color: #2E8B57;
  box-shadow: 0 0 0 0.2rem rgba(46,139,87,0.25);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .content-section h2 {
    font-size: 28px;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .header-fixed .container {
    flex-direction: column;
    gap: 15px;
  }
  
  .cookie-banner .container {
    flex-direction: column;
  }
}
