:root {
  --primary-color: #1e3a8a;
  --primary-dark: #1e40af;
  --secondary-color: #3b82f6;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --text-dark: #212529;
  --text-light: #6c757d;
}

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

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  background: rgba(30, 58, 138, 0.75);
  min-height: 100vh;
}

.page-header {
  background: var(--primary-color);
  color: white;
  padding: 120px 0 60px;
  margin-top: -70px;
}

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

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

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

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

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

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

.card {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.value-icon {
  font-size: 3rem;
  line-height: 1;
}

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

.thank-you-icon {
  font-size: 5rem;
  color: var(--primary-color);
  background: var(--light-bg);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

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: var(--primary-color);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

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

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

.accordion .card-header {
  background-color: white;
  border-bottom: 1px solid #dee2e6;
  padding: 0;
}

.accordion .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  font-weight: 600;
}

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

.shadow {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.075) !important;
}

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.alert-info {
  background-color: #e3f2fd;
  border-color: #bbdefb;
  color: #1565c0;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}

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

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

  .hero-overlay {
    min-height: 80vh;
  }

  .page-header {
    padding: 100px 0 40px;
  }

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

  .lead {
    font-size: 1.1rem;
  }

  .thank-you-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
