body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #212529;
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #0056b3;
}

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

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #0056b3;
}

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

.btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #004494;
  border-color: #004494;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.btn-outline-primary {
  color: #0056b3;
  border-color: #0056b3;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #e7f1ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #0056b3;
}

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

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

.card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.cta-section {
  background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
}

.footer {
  background-color: #212529;
}

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

.footer a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefit-item {
  padding-left: 20px;
  border-left: 4px solid #0056b3;
}

.who-card {
  transition: transform 0.3s ease;
}

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

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

.service-features li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0056b3;
  font-weight: bold;
  font-size: 1.2rem;
}

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

.contact-item svg {
  color: #0056b3;
}

.form-control:focus {
  border-color: #0056b3;
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.success-icon svg {
  display: inline-block;
}

.policy-content h2 {
  color: #0056b3;
}

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

.policy-content p {
  margin-bottom: 1rem;
}

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

.values-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.values-list li:before {
  content: "●";
  position: absolute;
  left: 0;
  color: #0056b3;
  font-size: 1.5rem;
}

.approach-card {
  transition: transform 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: #fff;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

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

.cookie-banner .btn-outline-light {
  color: #fff;
  border-color: #fff;
}

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

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

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

  .lead {
    font-size: 1rem;
  }

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