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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #212529;
  background-color: #ffffff;
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.75rem;
  color: #0066cc !important;
}

.navbar-light .navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #0066cc;
}

.navbar-light .navbar-nav .nav-link.active {
  color: #0066cc;
}

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  color: #212529;
  font-size: 2.5rem;
}

.hero-section .lead {
  color: #495057;
  font-size: 1.25rem;
}

.btn-primary {
  background-color: #0066cc;
  border-color: #0066cc;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0052a3;
  border-color: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

.btn-outline-primary {
  color: #0066cc;
  border-color: #0066cc;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #0066cc;
  border-color: #0066cc;
  transform: translateY(-2px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

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

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

.benefit-list li {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.benefit-card {
  background: #ffffff;
  border: 2px solid #0066cc;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 8px 16px rgba(0, 102, 204, 0.2);
  transform: translateY(-3px);
}

.cta-section {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
}

.page-header {
  margin-top: 56px;
}

footer {
  margin-top: 4rem;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0066cc !important;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: #ffffff;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

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

.cookie-banner .btn-light {
  background-color: #ffffff;
  color: #212529;
  font-weight: 600;
}

.cookie-banner .btn-outline-light {
  color: #ffffff;
  border-color: #ffffff;
  font-weight: 600;
}

.cookie-banner .btn-outline-light:hover {
  background-color: #ffffff;
  color: #212529;
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: bold;
}

.contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.success-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkmark-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease;
}

.checkmark {
  width: 50px;
  height: 25px;
  border-left: 6px solid #ffffff;
  border-bottom: 6px solid #ffffff;
  transform: rotate(-45deg);
  margin-bottom: 10px;
}

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

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

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

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .btn-primary,
  .btn-outline-primary {
    padding: 0.5rem 1.5rem;
  }
}
