:root {
  --moss-green: #7a9b76;
  --moss-green-light: #a4c2a0;
  --moss-green-dark: #5a7a57;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --border-color: #dee2e6;
}

* {
  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-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--moss-green) !important;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-content h1 {
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .lead {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.disclaimer-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

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

.content-section h2 {
  color: var(--moss-green-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-section h3,
.content-section h4 {
  color: var(--moss-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-section p {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

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

.context-block {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid var(--moss-green);
  padding: 4rem 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--moss-green-light) 0%, var(--moss-green) 100%);
  color: white;
}

.cta-section h2 {
  color: white;
}

.cta-section p {
  color: white;
}

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

.btn-primary:hover {
  background-color: var(--moss-green-dark);
  border-color: var(--moss-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 155, 118, 0.4);
}

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

.btn-outline-primary:hover {
  background-color: var(--moss-green);
  border-color: var(--moss-green);
  transform: translateY(-2px);
}

.cta-section .btn-outline-primary {
  color: white;
  border-color: white;
}

.cta-section .btn-outline-primary:hover {
  background-color: white;
  color: var(--moss-green);
  border-color: white;
}

.page-header {
  background: linear-gradient(135deg, var(--moss-green-light) 0%, var(--moss-green) 100%);
  color: white;
  padding: 4rem 0 3rem;
  margin-bottom: 0;
}

.page-header h1 {
  color: white;
}

.page-header .lead {
  color: white;
  opacity: 0.95;
}

.footer {
  background-color: #2d3436;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--moss-green-light);
}

.footer ul {
  padding-left: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.95);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  display: none;
}

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

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

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

.form-control:focus {
  border-color: var(--moss-green);
  box-shadow: 0 0 0 0.2rem rgba(122, 155, 118, 0.25);
}

.thank-you-content {
  background-color: var(--bg-secondary);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-section {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .lead {
    font-size: 1.2rem;
  }

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

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

  .btn-primary,
  .btn-outline-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .cookie-banner .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }
}
