:root {
  --primary-color: #3e5846;
  --primary-dark: #2d4233;
  --primary-light: #5a7a63;
  --secondary-color: #f8f9fa;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar-brand {
  color: var(--primary-color) !important;
  font-size: 1.5rem;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

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

.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

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

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-text {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-list {
  font-size: 1.1rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-list li {
  margin-bottom: 0.75rem;
}

.disclaimer-box {
  border: 2px solid var(--primary-color);
  border-radius: 8px;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-light {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

img {
  max-width: 100%;
  height: auto;
}

.shadow {
  box-shadow: 0 4px 12px var(--shadow) !important;
}

.shadow-sm {
  box-shadow: 0 2px 8px var(--shadow) !important;
}

.rounded {
  border-radius: 12px !important;
}

.footer {
  margin-top: 0;
}

.footer a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
}

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

.form-control {
  border-radius: 8px;
  border: 2px solid #dee2e6;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(62, 88, 70, 0.25);
}

.thank-you-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -2px 10px var(--shadow);
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 40px;
  }

  .page-header {
    padding: 80px 0 40px;
  }

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

  .cta-section {
    padding: 50px 0;
  }

  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-content button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.25rem;
  }

  .display-4 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}
