:root {
  --primary-success: #22a34a;
  --primary-dark: #1a1a1a;
  --primary-light: #f8f9fa;
  --text-dark: #333333;
  --text-light-gray: #999999;
  --border-light: #e9ecef;
}

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

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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

header {
  background-color: #ffffff;
}

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

.wv-logo {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
}

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

.btn-success {
  background-color: var(--primary-success);
  border-color: var(--primary-success);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #1a8838;
  border-color: #1a8838;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(34, 163, 74, 0.2);
}

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

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

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

.text-dark-gray {
  color: var(--text-dark) !important;
}

.text-light-gray {
  color: var(--text-light-gray) !important;
}

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

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

.card {
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(34, 163, 74, 0.1);
  border-color: var(--primary-success);
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefit-icon {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero {
  padding: 4rem 0;
}

.display-4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.lead {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

footer {
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 3rem 0;
  margin-top: auto;
}

footer a {
  color: var(--text-light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-success);
  text-decoration: none;
}

.border-top {
  border-top: 2px solid var(--border-light) !important;
}

.border-bottom {
  border-bottom: 2px solid var(--border-light) !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-success);
  box-shadow: 0 0 0 0.2rem rgba(34, 163, 74, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-success);
  border-color: var(--primary-success);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  border-top: 2px solid var(--primary-success);
  padding: 1.5rem 0;
  z-index: 1030;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.cookie-banner p {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: var(--primary-success);
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #ffffff;
}

.thank-you-content {
  padding: 2rem;
}

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

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

  .lead {
    font-size: 1rem;
  }

  .hero .col-lg-6 {
    margin-bottom: 2rem;
  }

  .cookie-banner {
    padding: 1rem 0;
  }

  .cookie-banner .col-md-8 {
    margin-bottom: 1rem;
  }

  .cookie-banner .col-md-4 {
    text-align: left;
  }

  .btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .navbar-brand {
    font-size: 1.25rem;
  }

  footer .row:last-child {
    flex-direction: column;
  }

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

.rounded {
  border-radius: 0.5rem;
}

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

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.text-center {
  text-align: center !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.list-inline {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}

.list-inline-item {
  display: inline-block;
  margin-right: 0.5rem;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-unstyled li {
  margin-bottom: 0.5rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.col,
.col-md-4,
.col-md-6,
.col-lg-6,
.col-lg-8,
.col-md-8 {
  flex: 0 0 100%;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

@media (min-width: 576px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 50%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
  }

  .text-md-right {
    text-align: right !important;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 50%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }
}
