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

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

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1e40af;
}

.header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #1e40af !important;
}

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

.nav-link:hover,
.nav-link.active {
  color: #2563eb !important;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 500px;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.85), rgba(37, 99, 235, 0.75));
  display: flex;
  align-items: center;
}

.hero-content {
  color: #fff;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.section {
  padding: 80px 0;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.page-header {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #fff;
  padding: 80px 0 60px;
  margin-bottom: 0;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header .lead {
  font-size: 18px;
  opacity: 0.95;
}

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

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

.card-title {
  color: #1e40af;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto;
}

.consultation-steps .step-item {
  background: #f8f9fa;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 4px solid #2563eb;
  border-radius: 4px;
}

.faq-container .faq-item {
  background: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.faq-item h4 {
  color: #1e40af;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

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

.testimonial-author {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #e5e7eb;
}

.testimonial-author strong {
  display: block;
  color: #1e40af;
  font-size: 16px;
}

.testimonial-author span {
  color: #6b7280;
  font-size: 14px;
}

.cta-section {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #fff;
}

.cta-section h2 {
  color: #fff;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.95);
}

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

.btn-primary:hover {
  background-color: #1e40af;
  border-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

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

.btn-outline-primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.principle-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  height: 100%;
}

.principle-card h3 {
  color: #1e40af;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

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

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

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

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.approach-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
}

.approach-item strong {
  display: block;
  color: #1e40af;
  font-size: 18px;
  margin-bottom: 15px;
}

.contact-info .contact-item {
  margin-bottom: 25px;
}

.contact-info .contact-item strong {
  display: block;
  color: #1e40af;
  font-size: 18px;
  margin-bottom: 8px;
}

.form-control {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.custom-control-label {
  font-size: 14px;
}

.thank-you-box {
  background: #f8f9fa;
  padding: 60px 40px;
  border-radius: 12px;
  margin: 60px 0;
}

.legal-content h2 {
  color: #1e40af;
  font-size: 28px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  color: #1e40af;
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

.footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 60px 0 20px;
  margin-top: 60px;
}

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

.footer a {
  color: #d1d5db;
  transition: color 0.3s ease;
}

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

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

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

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

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

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

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

.cookie-banner .btn {
  padding: 8px 20px;
  font-size: 14px;
}

.cookie-banner .btn-secondary {
  background-color: #4b5563;
  border-color: #4b5563;
}

.cookie-banner .btn-secondary:hover {
  background-color: #374151;
  border-color: #374151;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content .lead {
    font-size: 16px;
  }

  .hero-image {
    height: 400px;
  }

  .section {
    padding: 50px 0;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .cookie-banner .text-right {
    text-align: left !important;
    margin-top: 15px;
  }
}
