/* ==== LANDING PAGE STYLES ==== */
body.front-page {
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

.landing-page section {
  padding: 80px 20px;
  text-align: center;
}

.hero-section {
  background: linear-gradient(135deg, #005bea, #00c6fb);
  color: white;
  padding: 100px 20px;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.btn {
  background: #fff;
  color: #005bea;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #f1f1f1;
}

.services {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-box {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box i {
  color: #005bea;
  margin-bottom: 20px;
}

.cta-section {
  background: #005bea;
  color: white;
  padding: 80px 20px;
}

.cta-btn {
  background: white;
  color: #005bea;
  margin-top: 20px;
}