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

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

.navbar {
  transition: all 0.3s ease;
}

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

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

.nav-link:hover {
  color: #0066cc !important;
}

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

.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  margin-top: -70px;
  padding-top: 140px;
}

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

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

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

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

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

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

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

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

.benefit-item h4,
.approach-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.info-box {
  padding: 25px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
}

.info-box h5 {
  color: #0066cc;
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  color: #555;
}

.testimonial-author {
  font-weight: 600;
  color: #0066cc;
  margin-bottom: 0;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.cta-section h2 {
  font-weight: 700;
}

.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px;
}

.footer h5 {
  color: #fff;
  margin-bottom: 20px;
}

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

.footer a:hover {
  color: #0066cc;
}

.footer ul li {
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: white;
  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: #0066cc;
  text-decoration: underline;
}

.value-card,
.feature-box,
.focus-card {
  padding: 25px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.value-card:hover,
.feature-box:hover,
.focus-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: #e6f2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.process-step {
  padding: 30px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #0066cc;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

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

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

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: 700;
  font-size: 18px;
}

.contact-info-card {
  padding: 25px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #e6f2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card h5 {
  color: #0066cc;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-info-card a {
  color: #333;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: #0066cc;
}

.thank-you-section {
  padding: 120px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.success-icon {
  width: 120px;
  height: 120px;
  background-color: #d4edda;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.info-box-light {
  background-color: #f8f9fa;
  border: 2px solid #0066cc;
}

.policy-content h2 {
  color: #0066cc;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content h3 {
  color: #333;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.policy-content ul {
  margin-bottom: 20px;
}

.policy-content ul li {
  margin-bottom: 10px;
}

.policy-content p {
  margin-bottom: 15px;
}

.faq-item {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.faq-item h5 {
  margin-bottom: 10px;
}

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

  .section-padding {
    padding: 50px 0;
  }

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

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

  .lead {
    font-size: 1rem;
  }

  .cookie-banner .text-md-right {
    text-align: left !important;
  }

  .thank-you-section {
    padding: 80px 0;
  }
}
