:root {
  --primary-color: #4a90e2;
  --primary-dark: #2e5c8a;
  --primary-light: #6ba8f0;
  --text-dark: #2c3e50;
  --text-light: #5d6d7e;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e4e8;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.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;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 80px 0;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  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(74, 144, 226, 0.3);
}

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

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

.card-img-top {
  height: 200px;
  object-fit: cover;
}

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

.custom-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.custom-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.process-step {
  padding: 1.5rem;
  border-left: 3px solid var(--primary-color);
  background: var(--bg-light);
  border-radius: 8px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-content h5 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.info-box {
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-box-highlighted {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid white;
  border-radius: 8px;
}

.testimonial-card {
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--primary-color) !important;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}

.accordion .card-header button {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
}

.accordion .card-header button:hover {
  color: var(--primary-color);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: white;
}

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

.cookie-banner.hidden {
  display: none;
}

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

.page-header {
  border-bottom: 3px solid var(--primary-color);
}

.policy-content h2 {
  color: var(--text-dark);
  margin-top: 2rem;
}

.policy-content h4 {
  color: var(--primary-color);
  margin-top: 1.5rem;
}

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

.contact-form-wrapper {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.contact-info h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

.value-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}

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

.thank-you-box {
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkmark-icon {
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

footer {
  margin-top: auto;
}

footer a:hover {
  color: var(--primary-light) !important;
}

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

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

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

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

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

  .card-img-top {
    height: 180px;
  }
}
