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

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

.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

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

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s;
}

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

main {
  padding-top: 76px;
}

.hero-section {
  background: linear-gradient(135deg, rgba(56, 142, 60, 0.9), rgba(56, 142, 60, 0.7)), url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.content-block {
  margin-bottom: 60px;
}

.content-block h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #388E3C;
  margin-bottom: 20px;
}

.content-block h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.content-block p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.card {
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.btn-primary {
  background-color: #388E3C;
  border-color: #388E3C;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #2e7d32;
  border-color: #2e7d32;
  transform: translateY(-2px);
}

.disclaimer-box {
  background: #f8f9fa;
  border-left: 4px solid #388E3C;
  padding: 20px;
  margin: 40px 0;
}

.disclaimer-box h3 {
  color: #388E3C;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.footer {
  background: #f8f9fa;
  padding: 40px 0 20px;
  margin-top: 80px;
}

.footer h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid #dee2e6;
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

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

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

.cookie-banner p {
  margin-bottom: 15px;
  color: #333;
}

.cookie-banner .btn {
  margin-right: 10px;
}

.contact-form .form-control {
  border: 2px solid #e0e0e0;
  padding: 12px;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}

.contact-form .form-control:focus {
  border-color: #388E3C;
  box-shadow: none;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
}
