.z-index-0 {
  z-index: 0;
}

.z-index-100 {
  z-index: 100;
}

/* Improved centering for images */
.img-fluid.rounded.mx-auto.d-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Equal height for side-by-side images/icons */
.equal-height-images {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.equal-height-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.375rem;
}

.equal-height-images i {
  font-size: 120px;
  color: #f05f40;
}

/* Democracy section specific image/icon sizing */
#democracy .equal-height-images {
  height: 250px;
}

#democracy .equal-height-images img {
  height: 250px;
}

#democracy .equal-height-images i {
  font-size: 150px;
}

/* Our Work section image gallery */
.image-gallery .equal-height-images {
  height: 250px;
}

.image-gallery .equal-height-images img {
  height: 250px;
}

.image-gallery .equal-height-images i {
  font-size: 150px;
}

/* GBV section image/icon */
.gbv-image img {
  height: 400px;
  object-fit: cover;
}

.gbv-image i {
  font-size: 200px;
  color: #f05f40;
}

/* Better text alignment for sections */
.text-center h3 {
  margin-bottom: 1.5rem;
}

.text-center p {
  margin-bottom: 1rem;
}

/* Improved spacing for democracy section */
#democracy .container {
  padding: 2rem 0;
}

#democracy h3 {
  color: #f05f40;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Better alignment for feature items */
.features-clean .item {
  text-align: center;
  padding: 1.5rem;
}

.features-clean .item h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Improved responsive behavior */
@media (max-width: 768px) {
  .img-fluid.rounded {
    margin-bottom: 1.5rem;
  }
  
  .equal-height-images img {
    height: 150px;
  }
  
  .equal-height-images i {
    font-size: 80px;
  }
  
  #democracy .equal-height-images {
    height: 150px;
  }
  
  #democracy .equal-height-images img {
    height: 150px;
  }
  
  #democracy .equal-height-images i {
    font-size: 100px;
  }
  
  .image-gallery .equal-height-images {
    height: 150px;
  }
  
  .image-gallery .equal-height-images img {
    height: 150px;
  }
  
  .image-gallery .equal-height-images i {
    font-size: 100px;
  }
  
  .gbv-image img {
    height: 200px;
  }
  
  .gbv-image i {
    font-size: 120px;
  }
}

