:root {
  --primary-color: #dc3545;
  --primary-dark: #c82333;
  --secondary-color: #6c757d;
  --background-color: #ffffff;
  --text-color: #212529;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --light-bg: #f8f9fa;
}

* {
  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-color);
  line-height: 1.6;
  background-color: var(--background-color);
}

.header {
  background-color: var(--background-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.navbar {
  padding: 0.5rem 0;
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

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

.hero {
  padding: 4rem 0;
  background-color: var(--light-bg);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.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 8px rgba(220, 53, 69, 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-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.why-section,
.benefits-section,
.services-preview,
.who-section,
.testimonials-section {
  padding: 4rem 0;
}

.feature-card,
.service-card,
.testimonial-card {
  padding: 2rem;
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  margin-bottom: 1.5rem;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-card h3,
.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

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

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

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

.service-card img {
  border-radius: 8px 8px 0 0;
  margin: -2rem -2rem 1.5rem -2rem;
  width: calc(100% + 4rem);
}

.service-content {
  padding: 0;
}

.who-list {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
}

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

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

.who-item h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.testimonial-card {
  background-color: var(--light-bg);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-muted);
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding-left: 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: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.footer-legal li {
  margin-left: 1.5rem;
}

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

.footer-legal a:hover {
  color: white;
}

.page-header {
  background-color: var(--light-bg);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-content,
.services-detailed {
  padding: 4rem 0;
}

.about-content h2,
.services-detailed h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.value-card {
  padding: 2rem;
  background-color: var(--light-bg);
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1.5rem;
}

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

.about-cta,
.services-cta {
  padding: 4rem 0;
  background-color: var(--light-bg);
}

.contact-section {
  padding: 4rem 0;
}

.contact-info {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
}

.contact-item {
  margin-bottom: 2rem;
}

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

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.form-group label {
  font-weight: 600;
  color: var(--text-color);
}

.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(220, 53, 69, 0.25);
}

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

.thank-you-content {
  background-color: var(--light-bg);
  padding: 3rem;
  border-radius: 8px;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.thank-you-actions .btn {
  margin: 0.5rem;
}

.thank-you-info {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
}

.legal-section {
  padding: 4rem 0;
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
}

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

.service-disclaimer {
  padding: 2rem 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-color);
  color: white;
  padding: 1.5rem 0;
  z-index: 1000;
  display: none;
}

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-content a {
  color: var(--primary-color);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons .btn {
  white-space: nowrap;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    margin-top: 1rem;
  }

  .footer-legal li:first-child {
    margin-left: 0;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

  .hero-title {
    font-size: 1.75rem;
  }

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

  .why-section,
  .benefits-section,
  .services-preview,
  .who-section,
  .testimonials-section {
    padding: 2rem 0;
  }

  .about-content,
  .services-detailed,
  .contact-section {
    padding: 2rem 0;
  }
}
