:root {
  --primary-red: #dc2626;
  --primary-red-dark: #b91c1c;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-white: #ffffff;
  --bg-gray: #f9fafb;
  --border-gray: #e5e7eb;
}

* {
  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;
  font-size: 16px;
}

.brand-text {
  color: var(--primary-red);
  font-size: 1.5rem;
}

.navbar {
  padding: 1rem 0;
}

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

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

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

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

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

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

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

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

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

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

.section-title {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fee2e2;
  border-radius: 12px;
  color: var(--primary-red);
}

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

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

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

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

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

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

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

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

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

.audience-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  text-align: center;
  transition: transform 0.3s;
}

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

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

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

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

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

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

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

.cta-section h2 {
  color: white;
  font-weight: 700;
}

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

.footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 3rem 0 1rem;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p {
  color: #9ca3af;
  font-size: 0.9rem;
}

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

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

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

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #6b7280;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(17, 24, 39, 0.95);
  color: white;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner a {
  color: #fca5a5;
  text-decoration: underline;
}

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

.page-header h1 {
  color: var(--text-dark);
}

.page-header .lead {
  color: var(--text-light);
}

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

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

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

.why-choose-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

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

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

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

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

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

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

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
  border: 2px solid var(--border-gray);
  padding: 0.75rem;
  transition: border-color 0.3s;
}

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

.contact-info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
}

.contact-info-card h4 {
  color: var(--primary-red);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

.contact-info-card a {
  color: var(--primary-red);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-card a:hover {
  color: var(--primary-red-dark);
}

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

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

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

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

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  display: flex;
  justify-content: center;
}

.success-icon svg {
  color: #10b981;
}

.next-steps-card {
  background: var(--bg-gray);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-red);
}

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

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

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

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

.legal-page {
  padding: 4rem 0;
  background-color: var(--bg-white);
}

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

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

.legal-content h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.legal-content h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

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

.legal-content ul {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.legal-content a {
  color: var(--primary-red);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

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

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

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

  .cookie-banner .col-md-8,
  .cookie-banner .col-md-4 {
    text-align: center;
  }

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

  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
