:root {
  --primary-color: #2d8659;
  --primary-dark: #1f5f3f;
  --primary-light: #4aa876;
  --success-light: #e8f5e9;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

* {
  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;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.btn-outline-success {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.text-success {
  color: var(--primary-color) !important;
}

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

.navbar {
  padding: 1rem 0;
}

.navbar-brand img {
  height: 40px;
}

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

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

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

.hero-section h1 {
  font-weight: 700;
  color: var(--text-dark);
}

.hero-section .lead {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.page-header {
  padding: 60px 0;
}

.page-header h1 {
  font-weight: 700;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
  font-size: 2rem;
}

.topic-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-5px);
}

.step-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

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

.cta-section h2 {
  color: var(--white);
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.accordion .card {
  border: 1px solid #dee2e6;
  margin-bottom: 0;
}

.accordion .card-header {
  background-color: var(--white);
  border-bottom: 1px solid #dee2e6;
}

.accordion .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  width: 100%;
  text-align: left;
}

.accordion .btn-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

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

.content-section h4 {
  color: var(--text-dark);
  font-weight: 600;
}

.thank-you-content {
  padding: 60px 0;
}

.footer {
  background-color: #212529;
}

.footer h5,
.footer h6 {
  font-weight: 600;
}

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

.footer a:hover {
  color: var(--primary-light) !important;
}

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

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

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

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

  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  .step-card,
  .topic-card {
    margin-bottom: 1rem;
  }
}

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

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.rounded {
  border-radius: 0.5rem;
}
