.footer {
  background-image: url(/assets/images/Bg-footer.png);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 250px 0 50px;
  position: relative;
  overflow: hidden;
}

.footer__content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  text-align: left;
  padding: 0 20px;
}

.footer__section {
  max-width: 300px;
  text-align: center;
  margin: 0 auto;
}

.footer__title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.518);
}

.footer__text {
  font-size: 0.9em;
  line-height: 1.6;
  color: #e0dff0;
}

.footer__list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.footer__list li {
  margin-bottom: 5px;
}

.footer__list li a {
  color: #e0dff0;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s;
}

.footer__list li a:hover {
  color: #bba1f0;
}

.footer__bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.85em;
  background-color: #5a0c9b; /* Darker shade of purple */
  color: #e0dff0;
}

.footer__bottom p {
  margin: 0;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
  }

  .footer__section {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer {
    background-image: url(/assets/images/Bg-footer.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
  }
}
