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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.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;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background-color: #0066cc;
  border-color: #0066cc;
  color: #fff;
}

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

.hero-section h1 {
  color: #1a1a1a;
}

.hero-section .lead {
  color: #555;
}

.section-white {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-gray {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.section-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
}

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

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

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #0066cc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #666;
}

.benefit-card {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #0066cc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.benefit-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: #666;
  margin: 0;
}

.service-preview-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.service-preview-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  color: #333;
}

.service-list li:last-child {
  border-bottom: none;
}

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

.audience-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.audience-card ul {
  list-style-position: inside;
  color: #666;
}

.audience-card ul li {
  margin-bottom: 0.5rem;
}

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

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: #1a1a1a;
  font-weight: 600;
}

.testimonial-author span {
  color: #999;
  font-size: 0.9rem;
}

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

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

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

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

.footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer p {
  color: #ccc;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

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

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

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

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

.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.page-header h1 {
  color: #1a1a1a;
}

.page-header .lead {
  color: #555;
}

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

.approach-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.approach-card p {
  color: #666;
  margin: 0;
}

.offer-card {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  height: 100%;
}

.offer-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.offer-card ul {
  list-style-position: inside;
  color: #666;
  margin-top: 1rem;
}

.disclaimer-box {
  padding: 2rem;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 4px;
}

.disclaimer-box p {
  margin-bottom: 1rem;
}

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

.contact-info-box h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style-position: inside;
  color: #666;
  margin-bottom: 2rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

.process-step {
  text-align: center;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: #0066cc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: #666;
}

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

.contact-info-card h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-form-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid #e9ecef;
  padding: 0.75rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: #666;
  margin: 0;
}

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

.thank-you-card {
  padding: 3rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.next-steps-box {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: left;
}

.next-steps-box h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.next-steps-box ol {
  padding-left: 1.5rem;
}

.next-steps-box li {
  margin-bottom: 0.75rem;
  color: #666;
}

.contact-reminder {
  padding: 1.5rem;
  background: #e7f3ff;
  border-radius: 8px;
}

.legal-page {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.legal-content {
  background: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: #666;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  color: #666;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: #0066cc;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content .table {
  margin: 1.5rem 0;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-consent p {
  margin: 0;
  color: #ffffff;
}

.cookie-consent a {
  color: #0066cc;
  text-decoration: underline;
}

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

  .section-white,
  .section-gray {
    padding: 60px 0;
  }

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

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

  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .btn-lg {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .btn-lg.ml-2 {
    margin-left: 0 !important;
  }

  .legal-content {
    padding: 2rem 1.5rem;
  }

  .cookie-consent .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }
}
