:root {
  --primary-green: #28a745;
  --primary-green-dark: #218838;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  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;
  padding-top: 70px;
}

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

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

.hero-section h1 {
  color: var(--text-dark);
  font-size: 2.5rem;
  line-height: 1.2;
}

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

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

.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 var(--shadow);
}

.btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow);
}

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

.bg-success {
  background-color: var(--primary-green) !important;
}

footer {
  margin-top: 80px;
}

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

footer a:hover {
  opacity: 0.8;
}

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

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

.cookie-banner a {
  color: var(--white);
  text-decoration: underline;
}

.thank-you-section {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
  font-weight: bold;
}

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

.shadow-sm {
  box-shadow: 0 2px 5px var(--shadow);
}

.shadow {
  box-shadow: 0 4px 10px var(--shadow);
}

.shadow-lg {
  box-shadow: 0 8px 20px var(--shadow);
}

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

  .hero-section {
    padding: 60px 0;
  }

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

@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }

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

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

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