/* Footer.css */
.footer {
  background-color: #0F320B;
  color: white;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo-section {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  align-self: center;
}

.contact-info {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-icon {
  margin-right: 10px;
  font-size: 18px;
  color: #8BC34A;
}

.quick-links {
  flex: 1;
  min-width: 200px;
}

.quick-links h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.quick-links h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #8BC34A;
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 12px;
}

.quick-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.quick-links a:hover {
  color: #8BC34A;
}

.quick-links i {
  margin-right: 8px;
  font-size: 14px;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-logo-section {
    align-items: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .quick-links {
    text-align: center;
  }
  
  .quick-links h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .quick-links a {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    width: 150px;
  }
  
  .footer {
    padding: 30px 15px;
  }
}