.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #304674;
  margin: 10px 0 60px;
}

.blogss-banner-box img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* TOP PROFILE SECTION */

.top-profile {
  display: flex;
  gap: 50px;
  align-items: start;
  margin-bottom: 80px;
}

.top-profile img {
  width: 300px;
  border-radius: 30px;
  background: #f1e2c6;
  padding: 10px 10px 0px 10px;
}

.profile-content h3 {
  color: #304674;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.profile-content p {
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 500;
}

/* TEAM GRID */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.team-inner-card {
  display: flex;
  gap: 30px;
}

.team-inner-card img {
  width: 220px;
  border-radius: 25px;
  padding: 15px;
}

.bg-cream {
  background: #f1e2c6;
}
.bg-purple {
  background: #e4e1f7;
}
.bg-blue {
  background: #d9e2f3;
}

.team-info h4 {
  margin: 0;
  font-size: 18px;
  color: #304674;
}

.team-info span {
  display: block;
  margin: 8px 0 15px;
  font-size: 14px;
  font-weight: 500;
}

.team-info ul {
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.7;
}

.team-info ul li {
  margin-bottom: 8px;
}

.team-drop-down {
  display: block;
  height: 50%;
  width: 5%;
  margin: 0 auto; /* Yeh image ko center karega */
}

/* Responsive */

@media (max-width: 992px) {
  .top-profile {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-inner-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.subscribe-box {
  background: #d6ebdd;
  padding: 40px;
  border-radius: 15px;
}

.baby-img {
  max-width: 250px;
}

@media (max-width: 768px) {
  .subscribe-box {
    padding: 25px;
  }

  .baby-img {
    max-width: 180px;
  }

  .top-profile img{
    width: 90%;
  }
  .team-drop-down{
    width: 15%;
  }
  .team-inner-card img{
    width: 90%;
  }

  .section-title{
    font-size: 20px;
  }
  .blogss-banner-box img{
   padding: 15px 40px 0px 40px !important;
   height: 120px;
}
}
