:root {
  --primary-color: #388E3C;
  --primary-dark: #2E7D32;
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #F9F9F9;
  --white: #FFFFFF;
  --border-color: #E0E0E0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-color);
}

h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-color);
}

h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-color);
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--text-color);
}

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

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

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.header {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

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

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

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

.hero-section {
  margin-top: 72px;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.section {
  padding: 80px 0;
}

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

.content-image {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 142, 60, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.35s ease;
  display: inline-block;
  cursor: pointer;
}

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

.card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border: 1px solid var(--border-color);
  margin-bottom: 32px;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

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

.faq-answer {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.6;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px;
  transition: all 0.35s ease;
  width: 100%;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
  display: block;
}

.disclaimer-box {
  background-color: #FFF9E6;
  border-left: 4px solid #FFA000;
  padding: 24px;
  border-radius: 8px;
  margin: 32px 0;
}

.disclaimer-box h3 {
  font-size: 22px;
  color: #F57C00;
  margin-bottom: 12px;
}

.disclaimer-box p {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 8px;
}

.info-message {
  background-color: #E8F5E9;
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  border-radius: 8px;
  margin: 24px 0;
}

.footer {
  background-color: #2C3E50;
  color: #ECF0F1;
  padding: 60px 0 24px;
}

.footer h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer p,
.footer a {
  font-size: 16px;
  color: #BDC3C7;
  line-height: 1.8;
}

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

.footer-bottom {
  border-top: 1px solid #34495E;
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
  color: #95A5A6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  color: #ECF0F1;
  margin-bottom: 16px;
  font-size: 16px;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .hero-section {
    min-height: 400px;
  }

  .hero-content {
    padding: 48px 0;
  }

  .card {
    padding: 24px;
  }
}
