/* Footer */
.footer-section footer {
    background: #fff;
    padding: 40px 0;
    margin-top: 0;
    border-radius: 0 0 40px 40px;
    box-shadow: none;
}

.footer-section footer .container {
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  padding: 0 80px 0 80px;
}

.footer-section footer .slogan {
  font-weight: 400; 
  font-size: 14px; 
  line-height: 20px; 
  color: #202020;
  /* white-space: nowrap; */
}
.footer-section footer .footer-media {
  display: flex; 
  flex-direction: column; 
  align-items: flex-end;
  gap: 12px;
  /* white-space: nowrap; */
}

.footer-section footer .footer-media .copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #202020;
  text-align: right;
}


.footer {
  padding: 40px 0;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: -15px
  
}
.footer-left p{
    text-align: left;
    width: 100%;
  }

@media (max-width: 600px) {

    .footer-left {
  margin-top: 32px;
  margin-bottom: 32px;

  
}
  .footer-left p{
    text-align: center;
    width: 100%;
  }
  }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(64, 169, 255, 0.2);
  transform: translateY(-2px);
}

.social-link img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}


.footer-slogan {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
  text-align: left;
  max-width: 300px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin: 0;
  text-align: right;
}

@media (max-width: 1440px) {
  .footer-section footer .container {
    max-width: 1280px;
        padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .footer-section footer .container {
    padding: 0 24px;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-company {
    align-items: center;
    text-align: center;
  }

  .footer-section footer .footer-media {
    align-items: center;
    text-align: center;
  }

  .footer-section footer .footer-media .copyright {
    font-weight: 600;
  }

  .footer-section footer .slogan{
    font-weight: 600;
  }
  .footer-left {
    align-items: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-slogan {
    text-align: center;
    max-width: 100%;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-section footer .footer-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-section footer .footer-container > div {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 25px 20px;
  }

  .footer-content {
    gap: 25px;
  }
}