.blog-hero {
  position: relative;
  background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
   padding: 4rem 2rem 2rem 2rem;
  border-radius: 0 0 50px 50px;
}



.blog-hero .hero-content {
  text-align: center;
  padding: 1rem 2rem;
}

.blog-hero h1 { font-size: 2.5rem; margin-bottom: 1rem; font-weight:400;}
.blog-hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; line-height: 1.5; text-align: center;}

.container.blog-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-info {
  padding: 1rem;
}

.blog-info h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.blog-info h2 a { text-decoration: none; color: #003366; }
.blog-info h2 a:hover { color: #ff6600; }

.blog-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  font-size: 1rem;
  line-height: 1.6;
}





.blog-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #333;
}

.blog-container h1 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #0b3d91; /* Brand color */
}

.blog-container p {
  font-size: 18px;
  margin-bottom: 20px;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.challenge-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.challenge-card .number {
  font-size: 24px;
  font-weight: 700;
  color: #0b3d91;
  margin-right: 15px;
}

.challenge-card .content {
  flex: 1;
}

.challenge-card .icon {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 10px;
}

blockquote.highlight {
  background: #f0f4ff;
  border-left: 4px solid #0b3d91;
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  font-size: 18px;
}

.video-testimonial {
  margin-top: 40px;
}

.video-testimonial h2 {
  text-align: center;
  color: #0b3d91;
  margin-bottom: 20px;
  font-size: 28px;
}

@media (max-width: 768px) {
  .blog-container h1 {
    font-size: 28px;
  }

  .blog-container p,
  blockquote.highlight,
  .challenge-card .content p {
    font-size: 16px;
  }
}

