:root {
  --emerald-green: #2d6f5f;
  --emerald-light: #3d8f7f;
  --emerald-dark: #1d5f4f;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e9ecef;
}

* {
  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;
  background-color: var(--white);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-green);
}

.navbar-brand.logo:hover {
  color: var(--emerald-dark);
}

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

.nav-link:hover {
  color: var(--emerald-green);
}

.nav-link.active {
  color: var(--emerald-green);
}

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

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hero-section .lead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header .lead {
  font-size: 1.2rem;
  opacity: 0.9;
}

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

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

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--emerald-green);
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.content-section ul {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

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

.info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--emerald-green);
  margin-bottom: 1rem;
}

.info-card p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.glossary {
  display: grid;
  gap: 1.5rem;
}

.glossary-item {
  padding: 1.5rem;
  background: var(--white);
  border-left: 4px solid var(--emerald-green);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.glossary-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--emerald-green);
  margin-bottom: 0.5rem;
}

.glossary-item p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
}

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

.disclaimer-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--emerald-green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-box p {
  margin-bottom: 1rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

.disclaimer-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--emerald-green);
}

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

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--white);
  opacity: 0.9;
}

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

.btn-primary:hover {
  background-color: var(--emerald-dark);
  border-color: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 111, 95, 0.3);
}

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

.cta-section .btn-primary:hover {
  background-color: var(--bg-light);
  border-color: var(--bg-light);
  color: var(--emerald-dark);
}

.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

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

.form-control:focus {
  border-color: var(--emerald-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 111, 95, 0.15);
}

.alert {
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.alert-info {
  background-color: #e7f5f2;
  border-color: var(--emerald-light);
  color: var(--emerald-dark);
}

.alert h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

img.rounded {
  border-radius: 12px;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

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

  .content-section p {
    font-size: 1rem;
  }

  .cookie-banner .text-right {
    text-align: left;
    margin-top: 1rem;
  }

  .navbar-collapse {
    margin-top: 1rem;
  }
}
