:root {
  --primary-red: #dc3545;
  --dark-red: #c82333;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --white: #ffffff;
  --black: #000000;
}

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

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

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-red);
}

.hero-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

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

.hero-section .lead {
  color: var(--medium-gray);
}

.section-white {
  padding: 80px 0;
  background-color: var(--white);
}

.section-gray {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.page-header {
  padding: 60px 0;
  background-color: var(--light-gray);
  text-align: center;
}

.page-header-small {
  padding: 40px 0;
  background-color: var(--light-gray);
  text-align: center;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-text {
  font-size: 2rem;
  font-weight: bold;
  color: var(--white);
}

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

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

.benefits-list li {
  position: relative;
  padding-left: 30px;
}

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

.service-card {
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

.service-card img {
  height: 200px;
  object-fit: cover;
}

.audience-card {
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

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

.testimonial-text {
  font-style: italic;
  color: var(--medium-gray);
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-gray);
}

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

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

.footer {
  padding: 60px 0 20px;
  background-color: var(--dark-gray);
  color: var(--white);
}

.footer h5,
.footer h6 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

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

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

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

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

.value-card {
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

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

.approach-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

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

.why-card {
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

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

.service-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

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

.process-step {
  padding: 30px;
}

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

.contact-info {
  padding: 30px;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.contact-item h5 {
  font-size: 1.1rem;
}

.contact-reasons {
  list-style: none;
  padding: 0;
}

.contact-reasons li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.contact-reasons li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
  font-size: 1.5rem;
}

.faq-item {
  padding: 25px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

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

.thank-you-content {
  padding: 40px;
  background-color: var(--light-gray);
  border-radius: 12px;
}

.success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.checkmark {
  font-size: 3rem;
  color: var(--white);
  font-weight: bold;
}

.next-steps {
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
}

.step-box {
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 8px;
  height: 100%;
}

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

.contact-reminder {
  padding: 20px;
  background-color: var(--white);
  border-radius: 8px;
}

.legal-content {
  padding: 40px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
  color: var(--dark-gray);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.legal-content h3 {
  color: var(--dark-gray);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.legal-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 20px 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: var(--white);
}

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

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

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

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

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

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

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

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

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

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

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

  .footer {
    padding: 40px 0 20px;
  }

  .service-card img {
    height: 150px;
  }

  .legal-content {
    padding: 20px;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content h3 {
    font-size: 1.2rem;
  }
}
