footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
  align-items: flex-start;
  gap: 50px;
  justify-content: space-between;
  position: relative;
  z-index: 999999999999;
}

footer .footer-container .flex-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

footer .footer-container .flex-list .title {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

footer .footer-container .flex-list ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}

footer .footer-container .flex-list ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer .footer-container .flex-list ul li a {
  color: #FFF;
}

footer .footer-container .flex-list:last-child{
  max-width: 205px;
}

footer .footer-container .flex-list .contact-us {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  background: #654DF8;
  color: #FFF;
}

footer .footer-container .flex-list .flex-social-media {
  display: flex;
  align-items: center;
  gap: 16.25px;
  align-self: stretch;
}

footer .footer-container .flex-list .call-info{
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.main{
  padding: 0 251px;
}

@media screen and (max-width: 1560px) {
  .main{
    padding: 0 100px;
  }
}


@media screen and (max-width: 1366px) {
  .main{
    padding: 0 50px;
  }
}

@media screen and (max-width: 768px) {
  .main{
    padding: 0 25px;
  }
}


@media screen and (max-width: 550px) {
  .main{
    padding: 0 20px;
  }

  footer .footer-container .flex-list .title{
    font-size: 20px !important;
  }
}  


@media screen and (max-width: 580px) {
  footer .footer-container{
      padding: 25px 0;
  }

  footer .footer-container .flex-list:last-child{
      max-width: unset;
  }

  footer .footer-container .flex-list .flex-social-media{
      justify-content: space-between;
  }
}


@media screen and (max-width: 440px) and (min-width: 380px) {
	.footer-section {
	  height: 77dvh; /* Use dvh instead of svh for better iOS support */
	  min-height: 77dvh; /* Ensures it never collapses smaller */
	  box-sizing: border-box; /* Prevents padding from increasing height */
	  
	  /* Optional: Add safe area insets if content is hidden behind iPhone UI */
	  padding-bottom: env(safe-area-inset-bottom);
	}
  }