body {
  font-family: 'Inter', sans-serif;
  background: #f7f8fa;
  color: #1e2b45;
  margin: 0;
  overflow-x: hidden;
}

.hero-section {
  min-height: 88vh;
  position: relative;
  padding: 80px 0 60px;
  background: radial-gradient(circle at top left, rgba(0,95,180,0.06), transparent 35%), radial-gradient(circle at bottom right, rgba(0,95,180,0.06), transparent 35%), linear-gradient(180deg, #fbfbfc 0%, #f3f6f9 100%);
}

.main-logo {
  max-width: 420px;
  margin-bottom: 10px;
}

.divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #34b5e5, #0b2b6d);
  border-radius: 20px;
  margin-top: 10px;
  margin-bottom: 35px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0b2b6d;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #4c5870;
  max-width: 760px;
  margin: 0 auto 18px;
}

.coming-soon {
  font-size: 1rem;
  color: #7a8599;
  margin-top: 20px;
}

.feature-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 22px;
  padding: 35px 28px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(10,30,70,0.06);
  transition: transform 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e7f6fd, #d9ecf7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle span {
  color: #0b2b6d;
  font-size: 1.2rem;
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #0b2b6d;
}

.feature-card p {
  color: #5b667b;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-section {
  background: linear-gradient(135deg, #071d4a 0%, #0b2b6d 100%);
  color: #fff;
  padding: 55px 0 25px;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-section p {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
}

.footer-contact {
  text-align: right;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

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

@media (max-width: 991px) {
  .main-logo {
    max-width: 320px;
  }
}

@media (max-width: 991px) {
  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 60px;
  }
}

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

@media (max-width: 576px) {
  .hero-text {
    font-size: 1rem;
  }
}

