:root {
  --primary-color: #dc3545;
  --primary-dark: #c82333;
  --secondary-color: #6c757d;
  --light-bg: #f8f9fa;
  --dark-bg: #343a40;
  --text-dark: #212529;
  --text-light: #6c757d;
  --white: #ffffff;
  --border-color: #dee2e6;
}

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

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

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

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-top: -70px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.page-header {
  position: relative;
  height: 350px;
  overflow: hidden;
  margin-top: -70px;
  margin-bottom: 50px;
}

.page-header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.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 8px rgba(220, 53, 69, 0.3);
}

.card {
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  border-radius: 8px;
}

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

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--light-bg);
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2rem;
  border: 3px solid var(--primary-color);
}

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

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

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

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

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

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

.legal-page {
  padding-top: 100px;
  padding-bottom: 50px;
}

.legal-page h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.legal-page h2 {
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.legal-page h3 {
  color: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.legal-page p {
  margin-bottom: 15px;
}

.legal-page ul {
  margin-bottom: 15px;
  padding-left: 30px;
}

.legal-page li {
  margin-bottom: 8px;
}

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

.thank-you-box {
  background-color: var(--white);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accordion .card {
  border-radius: 0;
  margin-bottom: 10px;
}

.accordion .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
}

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

.form-control {
  border-radius: 5px;
  border: 1px solid var(--border-color);
  padding: 12px 15px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-info {
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: 8px;
}

.contact-info h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-color);
}

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

  .page-header {
    height: 250px;
  }

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

  .thank-you-box {
    padding: 30px;
  }

  .cookie-banner .btn {
    margin-bottom: 10px;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
