:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --secondary-color: #3b82f6;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-gray: #f9fafb;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-section h1 {
  color: var(--text-dark);
}

.hero-section .lead {
  color: var(--text-light);
  font-size: 1.25rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.section-white {
  padding: 5rem 0;
  background-color: var(--white);
}

.section-gray {
  padding: 5rem 0;
  background-color: var(--bg-gray);
}

.page-header {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  text-align: center;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-light);
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

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

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

.service-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.audience-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  height: 100%;
}

.audience-card h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.audience-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

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

.testimonial-card p {
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.testimonial-author strong {
  color: var(--text-dark);
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
}

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

.btn-light {
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner a {
  color: var(--white);
  text-decoration: underline;
}

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

.value-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.approach-list {
  list-style: none;
  padding: 0;
}

.approach-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
}

.approach-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

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

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

.disclaimer-box a {
  color: var(--primary-color);
  font-weight: 600;
}

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

.service-features li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

.additional-service-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.additional-service-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.additional-service-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h5 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.process-step p {
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-info-card {
  background: var(--bg-gray);
  padding: 1.5rem;
  border-radius: 8px;
}

.contact-info-card h5 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.contact-info-card p {
  color: var(--text-dark);
  margin-bottom: 0;
}

.faq-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.faq-card h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.form-control {
  border: 1px solid var(--border-color);
  padding: 0.75rem;
  border-radius: 4px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-check-label {
  color: var(--text-dark);
}

.form-check-label a {
  color: var(--primary-color);
  font-weight: 600;
}

.thank-you-section {
  padding: 5rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-icon {
  color: var(--success-color);
}

.thank-you-actions {
  margin-top: 2rem;
}

.next-step-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.step-number-alt {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.next-step-card h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.next-step-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.75rem;
}

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

.legal-content h3 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.35rem;
}

.legal-content p {
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content ul li {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.legal-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.legal-content a {
  color: var(--primary-color);
  font-weight: 600;
}

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

.legal-content .table th {
  background-color: var(--bg-gray);
  color: var(--text-dark);
  font-weight: 600;
}

.legal-content .table td {
  color: var(--text-dark);
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffc107;
  color: #856404;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

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

  .hero-section h1 {
    font-size: 2rem;
  }

  .section-white,
  .section-gray {
    padding: 3rem 0;
  }

  .page-header {
    padding: 3rem 0 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .cta-section {
    padding: 3rem 0;
  }

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

  .thank-you-actions .btn:last-child {
    margin-bottom: 0;
  }

  .cookie-banner .btn {
    margin-top: 0.5rem;
  }
}
