/* Footer */
.footer {
  background: linear-gradient(90deg, #42723d 0%, #60a759 60%, #6bc861 100%);
  color: white;
  padding: 20px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 85%;
  margin: 0 auto;
}

.footer-left {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo {
  margin-bottom: 20px;
  width: 150px;
}

.footer-left p {
  width: 500px;
  text-align: justify;
  margin: 0;
  line-height: 1.6;
}

.footer-right {
  flex: 1;
  max-width: 40%;
  margin-top: 25px;
  text-align: right;
}

.footer-social {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-social li {
  display: inline-block;
}

.footer-social a {
  color: white;
  font-size: 24px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ddd;
}

.footer-right p i {
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  position: relative;
  padding-top: 10px;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  border-top: 1px solid #ddd;
}

.footer-bottom p {
  margin: 12px 0;
}

/* Responsive styles */
@media (max-width: 1280px) {
  .navbar-container {
    max-width: 1100px;
  }

  .nav-item {
    margin: 0 10px;
  }

  .nav-link {
    font-size: 15px;
  }

  .footer-left p {
    width: 95%;
  }
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
  .footer-logo {
    width: 100px;
  }

  .footer-left p {
    font-size: 14px;
  }

  .footer-right {
    font-size: 14px;
    margin-top: 10px;
  }

  .footer-right p {
    margin-top: 50px;
  }
}

@media (max-width: 450px) {
  .footer-logo {
    width: 100px;
  }

  .footer-left p {
    font-size: 11px;
  }

  .footer-right {
    font-size: 11px;
  }

  .footer-right p {
    margin-top: 52px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-logo {
    width: 90px;
  }

  .footer-social a {
    font-size: 20px;
  }
}

@media (min-width: 1281px) {
  .navbar-container {
    max-width: 1200px;
  }
}
