:root {
  --primary-color: #dc3545;
  --primary-dark: #c82333;
  --primary-light: #e4606d;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.navbar {
  transition: all 0.3s ease;
}

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

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

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

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

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.85) 0%, rgba(108, 117, 125, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 80px 0 60px;
  margin-bottom: 0;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.section-padding {
  padding: 80px 0;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 32px;
  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: var(--shadow-lg);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 32px;
  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);
}

.card {
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.custom-icon {
  font-size: 3rem;
  line-height: 1;
}

.icon-wrapper {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.benefit-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 1.05rem;
}

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

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

.info-card-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.info-card-text {
  color: var(--text-muted);
  margin-bottom: 0;
}

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

.topic-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.topic-item h5 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.topic-item p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.step-card {
  text-align: center;
  padding: 20px;
}

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

.step-card h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.accordion .card {
  border: 1px solid var(--border-color);
  margin-bottom: 0;
}

.accordion .card-header {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
}

.accordion .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  padding: 1rem 1.25rem;
  font-weight: 600;
  width: 100%;
  text-align: left;
}

.accordion .btn-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.accordion .card-body {
  padding: 1.25rem;
  color: var(--text-muted);
}

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

.cta-title {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

.btn-light:hover {
  background-color: var(--bg-light);
  color: var(--primary-dark);
  border-color: var(--bg-light);
  transform: translateY(-2px);
}

.btn-outline-light {
  color: var(--white);
  border-color: var(--white);
}

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

.principle-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
}

.principle-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

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

.principle-text {
  color: var(--text-muted);
  margin-bottom: 0;
}

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

.approach-list li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.approach-list li:before {
  content: "•";
  position: absolute;
  left: 10px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.feature-box {
  text-align: center;
  padding: 20px;
}

.feature-box h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-box p {
  color: var(--text-muted);
  margin-bottom: 0;
}

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

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

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

.contact-info-item p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

.form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}

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

.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
}

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

.legal-content h2:first-child {
  margin-top: 0;
}

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

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

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

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

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

.disclaimer-content .alert {
  margin-bottom: 2rem;
}

.footer {
  background-color: #1a1a1a;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 20px;
  margin-top: 0;
}

.footer-brand {
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.footer-heading {
  color: var(--white);
  font-weight: 700;
  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.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-divider {
  background-color: rgba(255, 255, 255, 0.2);
  margin: 30px 0 20px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-text {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

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

@media (max-width: 767px) {
  .hero-section {
    min-height: 500px;
  }

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

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

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

  .section-padding {
    padding: 50px 0;
  }

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

  .cta-title {
    font-size: 1.65rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .button-group {
    flex-direction: column;
  }

  .button-group .btn {
    width: 100%;
  }
}
