:root {
  --primary-color: #4A7043;
  --primary-hover: #3d5a36;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
}

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

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: #ffffff;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 20px 0;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  margin: 0 4px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.hero-section {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 48px;
  text-align: center;
}

.section-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.content-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.content-image {
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 24px;
}

.content-image-right {
  float: right;
  max-width: 45%;
  margin-left: 40px;
  margin-bottom: 24px;
}

.content-image-left {
  float: left;
  max-width: 45%;
  margin-right: 40px;
  margin-bottom: 24px;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  opacity: 0.85;
  text-decoration: none;
  transform: translateY(-2px);
}

.card-custom {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.card-custom:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.card-custom h3 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 60px 0;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.disclaimer-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  padding: 32px;
  margin: 40px 0;
}

.disclaimer-box h3 {
  color: #856404;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.disclaimer-box p {
  color: #856404;
  font-size: 16px;
  line-height: 1.7;
}

.form-control-custom {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 112, 67, 0.1);
}

.footer {
  background-color: var(--text-dark);
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer p, .footer a {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}

.modal-content-custom {
  background-color: #ffffff;
  max-width: 800px;
  margin: 40px auto;
  padding: 48px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid var(--border-color);
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  z-index: 9998;
  display: none;
}

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

.cookie-banner p {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.cookie-banner button {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-banner button:hover {
  background-color: var(--primary-hover);
  opacity: 0.85;
}

.success-message {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 16px;
  border-radius: 8px;
  margin-top: 20px;
  display: none;
}

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

.list-custom li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.list-custom li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .section-subtitle {
    font-size: 24px;
  }
  
  .content-image-right,
  .content-image-left {
    float: none;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  
  .section {
    padding: 48px 0;
  }
  
  .modal-content-custom {
    padding: 32px 24px;
  }
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
