.footer {
  background-color: #ffffff;
  color: #6b0400;
  font-family: 'Poppins', sans-serif;
  position: relative;
  height: 400px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 40px 0;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  gap: 40px;
}

.footer-left {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-img {
  display: flex;
  align-items: flex-start;
}

.footer-img {
  position: relative;
}

.footer-logo {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -70px;
  height: 290px;
  width: 290px;
  object-fit: contain;
  z-index: 100;
}

.footer-right {
  flex: 2;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.1rem;
  color: #333;
  margin-top: 50px;
}

.nav-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.nav-footer a {
  color: #6b0400;
  text-decoration: none;
  font-size: 1rem;
}

.nav-footer a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 50px;
  color: #333;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
}

.footer-social-icons a {
  color: #6b0400;
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-social-icons a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  color: #333;
  opacity: 0.6;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
}

.footer-bar {
  display: flex;
  height: 12px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bar {
  flex: 1;
}

.red1 {
  background-color: #c62828;
}

.red2 {
  background-color: #e53935;
}

.red3 {
  background-color: #ef5350;
}

.red4 {
  background-color: #ffcdd2;
}

@media (max-width: 768px) {
  .footer {
    height: auto;
    padding-bottom: 80px;
    font-size: 0.95rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 30px 20px 0;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .footer-links {
    align-items: center;
    margin-top: -50px;
  }

  .footer-social {
    margin-top: 50px;
    align-items: center;
  }

  .nav-footer {
    align-items: center;
  }

  .footer-logo {
    position: relative;
    margin-top: 0;
    width: 200px;
    height: auto;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-bottom {
    position: static;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px 15px;
    font-size: 0.75rem;
    margin-top: 50px;
    margin-bottom: -80px;
  }

  .footer-bar {
    position: relative;
  }
}
