body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 70px;
}

.navbar {
  transition: all 0.3s ease;
}

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

.text-primary {
  color: #0066cc !important;
}

.bg-primary {
  background-color: #0066cc !important;
}

.btn-primary {
  background-color: #0066cc;
  border-color: #0066cc;
}

.btn-primary:hover {
  background-color: #0052a3;
  border-color: #0052a3;
}

.btn-outline-primary {
  color: #0066cc;
  border-color: #0066cc;
}

.btn-outline-primary:hover {
  background-color: #0066cc;
  border-color: #0066cc;
  color: #fff;
}

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

.hero-section h1 {
  color: #212529;
}

.page-header {
  padding: 100px 0 50px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.quality-badge {
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer {
  margin-top: 50px;
}

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

.footer a:hover {
  opacity: 0.8;
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.thank-you-content {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
  color: #0066cc;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content h3 {
  color: #212529;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.policy-content p,
.policy-content li {
  line-height: 1.8;
  color: #495057;
}

.policy-content ul {
  margin-bottom: 20px;
}

.contact-info h5 {
  color: #0066cc;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-item {
  padding: 20px;
}

.benefit-item h4 {
  color: #0066cc;
  margin-bottom: 10px;
}

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

  .page-header {
    padding: 80px 0 40px;
  }

  .thank-you-content {
    padding: 30px 20px;
  }
}
