:root {
  --primary-color: #003d82;
  --secondary-color: #0052a3;
  --light-bg: #f8f9fa;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --border-color: #dee2e6;
  --white: #ffffff;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 56px;
}

main {
  flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

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

.navbar {
  background-color: var(--primary-color) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

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

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

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

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

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

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

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 100px 0 80px 0;
  text-align: center;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 3rem;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
}

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

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

.card-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.card-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

footer {
  background-color: var(--text-dark);
  color: var(--white);
  margin-top: auto;
}

footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

footer p {
  line-height: 1.8;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

footer a {
  color: var(--white);
  transition: color 0.3s ease;
}

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

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

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

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cookie-content p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.thank-you-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.legal-content {
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

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

.contact-info {
  padding: 1.5rem;
  background-color: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.contact-info h5 {
  margin-bottom: 0.5rem;
}

.contact-info p {
  margin-bottom: 0;
  color: var(--text-light);
}

.contact-info a {
  color: var(--primary-color);
  font-weight: 500;
}

@media (max-width: 768px) {
  body {
    padding-top: 56px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

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

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

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-content button {
    margin-top: 0.5rem;
    margin-right: 0.5rem;
  }

  .card-title {
    font-size: 1rem;
  }

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

  footer h5 {
    font-size: 1rem;
  }

  footer p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

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

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

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

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

  .card {
    margin-bottom: 1.5rem;
  }

  .legal-content {
    font-size: 0.9rem;
  }

  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }
}

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

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

.rounded {
  border-radius: 0.375rem;
}

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