/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 4rem 2rem;
  border-radius: 16px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: white !important;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  line-height: 1.6;
  color: white !important;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-color: #3b82f6;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #1e3a8a !important;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #475569 !important;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.feature-link {
  color: #3b82f6 !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.feature-card:hover .feature-link {
  transform: translateX(4px);
}

/* Info Section */
.info-section {
  background: #f8fafc;
  border-radius: 12px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
}

.info-section h2 {
  color: #1e3a8a !important;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.info-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
}

.info-text p {
  color: #374151 !important;
  margin-bottom: 1rem;
}

.info-stats {
  display: grid;
  gap: 1.5rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a !important;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #64748b !important;
  font-size: 0.9rem;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  margin-bottom: 3rem;
}

.cta-section h2 {
  color: #1e3a8a !important;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.cta-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.cta-card h3 {
  color: #1e3a8a !important;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-card p {
  color: #475569 !important;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: #3b82f6;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .info-content {
    grid-template-columns: 1fr;
  }
  
  .features-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
}
