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

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

.navbar {
  padding: 1rem 0;
}

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

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

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

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

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

.page-header {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  margin-top: 76px;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
}

.feature-icon-large {
  font-size: 4rem;
  color: var(--primary-color);
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

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

.footer {
  margin-top: 3rem;
}

.footer a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
}

.policy-content h3 {
  color: var(--primary-color);
}

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

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

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

  .page-header {
    padding: 3rem 0 2rem;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }

  .page-header {
    margin-top: 70px;
  }

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

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

  .feature-icon-large {
    font-size: 3rem;
  }
}
