body {
  font-family: Arial, sans-serif;
  color: #1f2937;
  background: #ffffff;
}

.navbar-brand {
  font-size: 26px;
}

.hero-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #eef5ff, #ffffff);
}

.hero-section h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-section p {
  font-size: 18px;
  color: #5b6472;
  margin: 20px 0;
}

.hero-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.hero-card li {
  margin-bottom: 12px;
}

.feature-card,
.report-card,
.industry-card,
.lead-box {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.feature-card:hover,
.report-card:hover,
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.page-header {
  padding: 70px 0;
  background: #0f172a;
  color: #ffffff;
}

.page-header h1 {
  font-size: 44px;
  font-weight: 800;
}

.page-header p {
  color: #cbd5e1;
  font-size: 18px;
}

.cta-section {
  padding: 70px 0;
  background: #0d6efd;
  color: #ffffff;
}

.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

@media(max-width: 768px) {
  .hero-section h1 {
    font-size: 36px;
  }

  .hero-section {
    padding: 60px 0;
  }
}