* {
  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: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

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

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

.nav-link:hover {
  color: #1565c0 !important;
}

.nav-link.active {
  color: #1565c0 !important;
}

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

.page-header {
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
  padding: 100px 0 60px;
  margin-top: 0;
  text-align: center;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1565c0;
  margin-bottom: 1rem;
}

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

.btn-primary:hover {
  background-color: #0d47a1;
  border-color: #0d47a1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.btn-outline-primary {
  color: #1565c0;
  border-color: #1565c0;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  color: #1565c0;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #1565c0;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-list {
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
}

.benefit-number {
  background: #1565c0;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-item h4 {
  color: #1565c0;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

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

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  color: #1565c0;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

.service-features li:before {
  content: "✓";
  color: #1565c0;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.target-audience-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.target-audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.target-audience-card h4 {
  color: #1565c0;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.stars {
  color: #ffc107;
  font-size: 1.2rem;
}

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

.testimonial-author {
  font-weight: 600;
  color: #1565c0;
}

.cta-section {
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
  padding: 80px 0;
}

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

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

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a:hover {
  color: #1565c0;
}

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

.footer-legal:hover {
  color: #1565c0;
  text-decoration: none;
}

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

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

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

.value-card {
  text-align: center;
  padding: 30px 20px;
}

.value-icon {
  color: #1565c0;
  margin-bottom: 20px;
}

.value-card h4 {
  color: #1565c0;
  margin-bottom: 15px;
  font-weight: 600;
}

.why-choose-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.why-choose-card h4 {
  color: #1565c0;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.step-number {
  background: #1565c0;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h4 {
  color: #1565c0;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 8px;
}

.contact-info-icon {
  color: #1565c0;
  margin-right: 20px;
  flex-shrink: 0;
}

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

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

.contact-info-card a:hover {
  color: #1565c0;
}

.map-placeholder {
  background: #e3f2fd;
  padding: 100px 20px;
  border-radius: 8px;
  text-align: center;
}

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

.thank-you-icon {
  color: #4caf50;
}

.thank-you-card {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
}

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

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

.next-steps-list li:before {
  content: "→";
  color: #1565c0;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  color: #1565c0;
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.legal-content h3 {
  color: #1565c0;
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

.legal-content a {
  color: #1565c0;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #0d47a1;
}

.alert {
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

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

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

  .section-title {
    font-size: 2rem;
  }

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

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-number {
    margin: 0 auto 15px;
  }
}
