:root {
  --primary-color: #1f2937;
  --danger-color: #dc2626;
  --light-bg: #f9fafb;
  --border-color: #e5e7eb;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --dark: #111827;
}

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

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--danger-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b91c1c;
  text-decoration: underline;
}

.navbar-brand {
  font-size: 1.5rem !important;
}

.logo-text {
  color: var(--danger-color) !important;
  font-weight: 700;
}

.text-primary {
  color: var(--danger-color) !important;
}

.btn-danger {
  background-color: var(--danger-color);
  border-color: var(--danger-color);
  color: var(--white);
}

.btn-danger:hover {
  background-color: #b91c1c;
  border-color: #b91c1c;
}

.btn-outline-danger {
  color: var(--danger-color);
  border-color: var(--danger-color);
}

.btn-outline-danger:hover {
  background-color: var(--danger-color);
  border-color: var(--danger-color);
}

.btn-light:hover {
  background-color: #f3f4f6 !important;
}

.badge-danger {
  background-color: var(--danger-color);
  color: var(--white);
}

.badge-lg {
  font-size: 1.2rem;
  padding: 0.5rem 0.75rem;
}

.badge-xl {
  font-size: 1.5rem;
  padding: 0.75rem 1rem;
}

.text-danger {
  color: var(--danger-color) !important;
}

.bg-danger {
  background-color: var(--danger-color) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
  transition: color 0.3s ease;
}

.text-white-50:hover {
  color: rgba(255, 255, 255, 1) !important;
}

.border-gray-200 {
  border-color: var(--border-color) !important;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.hero-section {
  background-color: var(--dark);
  padding: 3rem 0;
}

.hero-section h1 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-section .lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.page-header {
  background-color: var(--dark);
  padding: 2rem 0;
}

.page-header h1 {
  font-weight: 700;
}

.page-header .lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.benefit-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.benefit-item h5 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: var(--text-light);
  margin: 0;
}

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

.consultation-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

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

.consultation-list strong {
  color: var(--danger-color);
}

.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

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

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

.ideal-list li:before {
  content: "•";
  color: var(--danger-color);
  font-weight: bold;
  display: inline-block;
  width: 1.5rem;
  margin-left: -1.5rem;
}

.testimonial-card {
  padding: 1.5rem;
}

.testimonial-card .card-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.accordion .card {
  border: 1px solid var(--border-color);
}

.accordion .card-header {
  padding: 0;
}

.accordion .btn-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
}

.accordion .btn-link:hover {
  text-decoration: none;
}

.accordion .card-body {
  color: var(--text-light);
  line-height: 1.8;
}

.final-cta {
  background-color: var(--danger-color);
  padding: 3rem 0;
  text-align: center;
}

.final-cta h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.final-cta .lead {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.value-card {
  padding: 1.5rem;
  text-align: center;
}

.value-icon {
  font-size: 2rem;
}

.value-card h5 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.approach-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

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

.approach-list strong {
  color: var(--danger-color);
}

.info-card {
  padding: 1.5rem;
}

.info-card h5 {
  margin-bottom: 1rem;
}

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

.info-card a {
  color: var(--text-dark);
  font-weight: 600;
}

.contact-form .form-control,
.contact-form .form-group label,
.contact-form .form-check-label {
  color: var(--text-dark);
}

.contact-form .form-control {
  border: 1px solid var(--border-color);
  padding: 0.75rem;
  font-size: 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--danger-color);
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.contact-form label {
  margin-bottom: 0.5rem;
}

.contact-form .form-check-label {
  margin-left: 0.5rem;
  font-size: 0.95rem;
}

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

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

.service-details-list li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  color: var(--text-dark);
}

.service-details-list li:before {
  content: "→";
  color: var(--danger-color);
  font-weight: bold;
  display: inline-block;
  width: 1.5rem;
  margin-left: -1.5rem;
}

.thank-you-content {
  padding: 2rem 0;
}

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

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

.step-number {
  background-color: var(--danger-color);
  color: var(--white);
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  border-radius: 50%;
  margin: 0 auto;
  font-weight: 700;
  font-size: 1.5rem;
}

.next-step h6 {
  font-weight: 600;
  color: var(--text-dark);
}

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

footer {
  background-color: var(--dark) !important;
  padding: 2rem 0;
}

footer h5 {
  font-weight: 700;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

footer a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

footer a:hover {
  color: rgba(255, 255, 255, 1);
}

footer .bg-secondary {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.policy-content h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-left: 1.5rem;
  list-style-type: disc;
}

.policy-content ul li {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

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

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

  .hero-section img {
    margin-top: 1.5rem;
  }

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

  .lead {
    font-size: 1rem;
  }

  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }

  .page-header {
    padding: 1.5rem 0;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  footer {
    padding: 1.5rem 0;
  }

  .col-md-6 {
    margin-bottom: 1.5rem;
  }

  .value-card {
    margin-bottom: 1rem;
  }

  .final-cta {
    padding: 2rem 0;
  }

  .accordion .btn-link {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .contact-form .form-control {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }

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

  .navbar-brand {
    font-size: 1.25rem !important;
  }

  .btn {
    font-size: 0.9rem;
  }

  .btn-block {
    display: block;
    width: 100%;
  }

  footer .col-md-6.text-right {
    text-align: left !important;
    margin-top: 1rem;
  }

  footer .list-inline-item {
    display: block;
    margin-bottom: 0.5rem;
  }

  footer .list-inline-item:after {
    content: "";
  }
}
