:root {
  --primary-red: #dc3545;
  --dark-red: #c82333;
  --light-gray: #f8f9fa;
  --dark-gray: #343a40;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --white: #ffffff;
  --border-color: #dee2e6;
}

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

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

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

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

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

.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-section .lead {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.btn-danger {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

.info-section .card-img-top {
  height: 200px;
  object-fit: cover;
}

.highlight-card {
  border: 2px solid var(--primary-red);
}

.highlight-card .card-body {
  background-color: #fff5f5;
}

.benefit-icon {
  font-size: 3rem;
}

.benefit-item {
  padding: 20px;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: scale(1.05);
}

.recommendation-card {
  transition: transform 0.3s ease;
}

.recommendation-card:hover {
  transform: translateX(5px);
}

.testimonial-card {
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary-red);
}

.testimonial-card:hover {
  transform: scale(1.03);
}

.faq-item {
  padding: 20px;
  background-color: var(--white);
  border-left: 4px solid var(--primary-red);
  margin-bottom: 20px;
}

.faq-item h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.consultation-form-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-wrapper {
  max-width: 100%;
}

.form-control {
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

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

.footer {
  background-color: var(--dark-gray);
}

.footer a {
  transition: color 0.3s ease;
}

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

.cookie-consent {
  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-consent.show {
  display: block;
}

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

.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.policy-section {
  background-color: var(--white);
}

.policy-content {
  line-height: 1.8;
}

.policy-content h2 {
  color: var(--text-dark);
  padding-top: 20px;
}

.policy-content ul {
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 8px;
}

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

.thank-you-content {
  animation: fadeInUp 0.6s ease;
}

.success-icon {
  animation: scaleIn 0.5s ease;
}

.info-box {
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
    text-align: center;
  }

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

  .hero-section .lead {
    font-size: 1rem;
  }

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

  .benefit-icon {
    font-size: 2.5rem;
  }

  .cookie-consent .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

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

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

  .btn-lg {
    padding: 10px 24px;
    font-size: 1rem;
  }
}
