:root {
  --color-primary: #dc143c;
  --color-primary-dark: #b01030;
  --color-secondary: #2c3e50;
  --color-text: #1a1a1a;
  --color-text-light: #4a4a4a;
  --color-background: #ffffff;
  --color-background-light: #f8f9fa;
  --color-background-dark: #2c3e50;
  --color-border: #e0e0e0;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-background);
}

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-name {
  color: var(--color-primary);
}

.navbar-nav .nav-link {
  color: var(--color-text);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s;
}

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

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

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

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

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

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

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: var(--color-background);
}

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

.btn-danger {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transition: all 0.3s;
}

.btn-danger:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 20, 60, 0.3);
}

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

.problem-title {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.problem-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

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

.feature-card {
  background: var(--color-background);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s;
}

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

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

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

.help-item h4 {
  margin-bottom: 0.5rem;
}

.approach-step {
  text-align: center;
  padding: 2rem 1rem;
}

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

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

.benefit-card h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

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

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

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

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

.footer-title {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-text {
  color: #b0b0b0;
  margin-bottom: 0.5rem;
}

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

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

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

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

.footer-copyright {
  color: #808080;
  margin-top: 2rem;
}

.page-header {
  background: var(--color-background-dark);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #e0e0e0;
}

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

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

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

.approach-list {
  padding-left: 2rem;
  font-size: 1.125rem;
}

.approach-list li {
  margin-bottom: 1rem;
}

.disclaimer-text {
  background: var(--color-background-light);
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
  font-size: 0.95rem;
}

.disclaimer-text a {
  color: var(--color-primary);
}

.service-card {
  background: var(--color-background);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

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

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  flex: 1;
}

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

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

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

.expectation-item h4 {
  margin-bottom: 0.5rem;
}

.contact-info-block {
  background: var(--color-background);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

.contact-form-wrapper {
  background: var(--color-background);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(220, 20, 60, 0.25);
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.thank-you-section {
  padding: 5rem 0;
  background-color: var(--color-background-light);
  min-height: 60vh;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

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

.thank-you-text {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.thank-you-details {
  background: var(--color-background);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: left;
}

.next-steps-list {
  list-style: none;
  padding: 0;
}

.next-steps-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

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

.thank-you-contact {
  margin: 2rem 0;
}

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

.legal-content {
  padding: 3rem 0;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  color: var(--color-primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-section h4 {
  color: var(--color-secondary);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section ul {
  margin-bottom: 1rem;
}

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

.legal-section a {
  color: var(--color-primary);
  text-decoration: underline;
}

.legal-section a:hover {
  color: var(--color-primary-dark);
}

.disclaimer-important {
  background: #fff3f3;
  border: 2px solid var(--color-primary);
  padding: 2rem;
  border-radius: 8px;
}

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-secondary);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

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

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

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

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

  .hero-subtitle {
    font-size: 1.125rem;
  }

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

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

  .navbar-nav .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-content p {
    margin-bottom: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  .thank-you-title {
    font-size: 2rem;
  }

  .thank-you-text {
    font-size: 1.125rem;
  }
}

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

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

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