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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 600;
  color: #7ba05b;
}

.navbar-brand:hover {
  color: #6a8f4f;
}

.nav-link {
  color: #555;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #7ba05b;
}

.btn-primary {
  background: linear-gradient(135deg, #7ba05b 0%, #6a8f4f 100%);
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6a8f4f 0%, #5a7f3f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 160, 91, 0.3);
}

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8f9f5 0%, #e8ede0 100%);
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e1f;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-section .lead {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
}

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e1f;
  margin-bottom: 1.5rem;
}

.content-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #3a4f2a;
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.bg-light {
  background-color: #f8f9f5;
}

img.rounded {
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.limit-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 5px solid #7ba05b;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.limit-list {
  list-style: none;
  padding-left: 0;
}

.limit-list li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.limit-list li:before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #c74a4a;
  font-weight: bold;
}

.faq-item {
  background: #fff;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  border-radius: 7px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.faq-item h5 {
  color: #3a4f2a;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.contact-disclaimer {
  background: #fff3cd;
  border: 2px solid #f0ad4e;
  padding: 1.5rem;
  border-radius: 7px;
  margin-bottom: 2rem;
}

.contact-disclaimer p {
  margin: 0;
  color: #856404;
  font-weight: 600;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.contact-form label {
  font-weight: 600;
  color: #3a4f2a;
}

.form-control {
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 0.8rem;
}

.form-control:focus {
  border-color: #7ba05b;
  box-shadow: 0 0 0 0.2rem rgba(123, 160, 91, 0.25);
}

.contact-info {
  background: #f8f9f5;
  padding: 1.8rem;
  border-radius: 7px;
}

.contact-info h5 {
  color: #3a4f2a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info a {
  color: #7ba05b;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

footer {
  background: #2c3e1f;
  color: #fff;
  padding: 2.5rem 0;
  margin-top: 80px;
}

footer a {
  color: #c8d7b8;
  margin-left: 1.5rem;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

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

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

.cookie-banner .btn {
  font-size: 0.9rem;
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
}

.cookie-modal-content h4 {
  color: #2c3e1f;
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1rem;
}

.cookie-option label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.cookie-option input {
  margin-right: 0.8rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .content-section h2 {
    font-size: 1.6rem;
  }

  footer a {
    display: block;
    margin: 0.5rem 0;
  }

  .cookie-banner .btn {
    display: block;
    width: 100%;
    margin: 0.3rem 0;
  }
}
