 .banner {
    background-color: #c8102e; /* Same red as in the image */
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
	text-align: center;
  }

  .banner-text {
    font-weight: bold;
    font-size: 18px;
  }

  .banner-button {
    padding: 10px 20px;
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }

  .banner-button:hover {
    background-color: #fff;
    color: #c8102e;
  }

  @media (max-width: 768px) {
    .banner {
      flex-direction: column;
      text-align: center;
    }

    .banner-button {
      margin-top: 15px;
    }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  .collapsible-section {
  width: 80%;
  max-width: 900px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.toggle-btn {
  width: 100%;
  background: #007BFF;
  color: white;
  padding: 15px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 10px 10px 0 0;
}

.toggle-btn:hover {
  background: #0056b3;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  padding: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.image-gallery img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

.image-gallery.show {
  max-height: 1000px; /* Adjust depending on number of images */
}





	.why-choose-heading {
  color: blue;
}
	