:root {
  --primary-color: #2E7D32;
  --primary-dark: #1B5E20;
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #F5F5F5;
  --white: #FFFFFF;
  --border-color: #E0E0E0;
}

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-color);
  background-color: var(--white);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 600;
}

h2 {
  font-size: 1.9rem;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  color: var(--text-color);
  font-weight: 600;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

.header-main {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo:hover {
  color: var(--primary-dark);
}

.logo img {
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
}

.navbar-nav .nav-link {
  color: var(--text-color);
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

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

.main-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.hero-section h1 {
  color: var(--primary-color);
}

.content-section {
  padding: 3rem 0;
}

.content-section:nth-child(even) {
  background-color: var(--bg-light);
}

.section-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.section-image-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.section-image-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.card-custom {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.2s ease;
}

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

.btn-primary-custom {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.btn-primary-custom:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.disclaimer-box {
  background-color: #FFF3CD;
  border-left: 4px solid #FFC107;
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: #856404;
  font-size: 1.25rem;
}

.disclaimer-box p {
  color: #856404;
  margin-bottom: 0;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.footer-main {
  background-color: #212529;
  color: #FFFFFF;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-main h4 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-main a {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-main a:hover {
  color: var(--primary-color);
}

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

.footer-main ul li {
  margin-bottom: 0.5rem;
}

.footer-copyright {
  border-top: 1px solid #495057;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: #ADB5BD;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: #FFFFFF;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: none;
}

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

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

.cookie-banner .btn {
  margin-right: 0.5rem;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.alert {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.alert-success {
  background-color: #D4EDDA;
  color: #155724;
  border: 1px solid #C3E6CB;
}

.alert-danger {
  background-color: #F8D7DA;
  color: #721C24;
  border: 1px solid #F5C6CB;
}

.contact-info {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-info h3 {
  color: var(--primary-color);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .section-image-left,
  .section-image-right {
    float: none;
    margin: 0 auto 1.5rem;
    display: block;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .content-section {
    padding: 2rem 0;
  }
}
