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

.navbar-brand {
  font-size: 1.4rem;
  color: #007bff !important;
}

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

.hero-section h1 {
  font-weight: 700;
  color: #212529;
}

.hero-section .lead {
  color: #6c757d;
  font-size: 1.15rem;
}

.features-section {
  background-color: #f8f9fa;
}

.feature-icon .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
}

.benefits-section {
  padding: 80px 0;
}

.benefits-section ul li {
  padding-left: 25px;
  position: relative;
}

.benefits-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
  font-size: 1.2rem;
}

.cta-section {
  background-color: #007bff;
}

.footer {
  background-color: #212529;
}

.footer a {
  color: #adb5bd;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

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

.card {
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.service-icon .icon-box {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
  border-radius: 50%;
}

.legal-content {
  font-size: 1rem;
  line-height: 1.7;
}

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: 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 p {
  margin: 0;
}

.cookie-banner a {
  color: #007bff;
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: #0056b3;
}

.thank-you-icon svg {
  animation: checkmark 0.8s ease-in-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

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

  .hero-section {
    padding: 40px 0;
  }

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

  .page-header {
    padding-top: 80px;
  }

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

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  border-color: #007bff;
}

.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;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

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

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-check-input:checked {
  background-color: #007bff;
  border-color: #007bff;
}

.alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}
