body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #212529;
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #7c3aed !important;
}

.nav-link {
  font-weight: 500;
  color: #495057 !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #7c3aed !important;
}

.btn-primary {
  background-color: #7c3aed;
  border-color: #7c3aed;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #6d28d9;
  border-color: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-outline-dark {
  border-color: #212529;
  color: #212529;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #212529;
  border-color: #212529;
  transform: translateY(-2px);
}

.btn-outline-primary {
  border-color: #7c3aed;
  color: #7c3aed;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: #7c3aed;
  border-color: #7c3aed;
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-section {
  padding: 5rem 0;
}

.feature-card {
  background: white;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
  color: #7c3aed;
}

.benefits-section {
  padding: 5rem 0;
}

.cta-section {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.text-primary {
  color: #7c3aed !important;
}

.bg-primary {
  background-color: #7c3aed !important;
}

.page-header {
  padding: 4rem 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto;
}

.legal-content h2 {
  color: #212529;
  margin-top: 2rem;
}

.legal-content h4 {
  color: #495057;
}

.legal-content ul {
  padding-left: 1.5rem;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-content p {
  flex: 1;
  margin: 0;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer {
  margin-top: auto;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #7c3aed !important;
}

.contact-info h5 {
  color: #212529;
}

.form-control:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

.form-check-input:checked {
  background-color: #7c3aed;
  border-color: #7c3aed;
}

.min-vh-75 {
  min-height: 75vh;
}

.thank-you-icon svg {
  filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3));
}

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

  .hero-section h1 {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
}
