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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

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

.hero-section h1 {
  color: #0066cc;
  margin-bottom: 20px;
}

.hero-section .lead {
  color: #555;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #0066cc;
  border-color: #0066cc;
  padding: 12px 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0052a3;
  border-color: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

.btn-outline-primary {
  color: #0066cc;
  border-color: #0066cc;
  padding: 12px 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #0066cc;
  border-color: #0066cc;
  transform: translateY(-2px);
}

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

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

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

.services-section,
.testimonials-section,
.dashboard-section,
.certifications-section {
  padding: 60px 0;
}

.services-section h2,
.testimonials-section h2,
.dashboard-section h2,
.certifications-section h2 {
  color: #0066cc;
  font-weight: bold;
}

.cta-section {
  background-color: #0066cc;
  color: white;
  padding: 60px 0;
}

.cta-section h2 {
  color: white;
}

.footer {
  background-color: #212529;
}

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

.footer a:hover {
  color: #0066cc !important;
}

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

.page-header h1 {
  color: white;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
}

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

.process-step {
  padding: 20px;
}

.form-control:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.policy-text h2 {
  color: #0066cc;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.policy-text h3 {
  color: #0052a3;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.policy-text p {
  margin-bottom: 15px;
  text-align: justify;
}

.policy-text ul {
  margin-bottom: 20px;
  padding-left: 30px;
}

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

.success-icon {
  display: inline-block;
}

.contact-info-section {
  background-color: #f8f9fa;
}

.accordion .btn-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  width: 100%;
  text-align: left;
}

.accordion .btn-link:hover {
  color: #0052a3;
  text-decoration: none;
}

.accordion .card-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

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

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

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

  .services-section,
  .testimonials-section,
  .dashboard-section,
  .certifications-section {
    padding: 40px 0;
  }
}
