/* Enhanced Footer Styles */
.footer {
  background: #FFE0CC;
  padding: 60px 20px 20px;
  font-size: 0.9rem;
  color: #666;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-logo h3 {
  margin: 10px 0 5px;
  color: #FF6D00;
}

.footer-logo p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer-column {
  min-width: 150px;
  margin-bottom: 30px;
}

.footer-column h4 {
  color: #333;
  margin-bottom: 15px;
}

.footer-column a {
  color: #555;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #FF6D00;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 20px;
  text-align: center;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-column {
    margin-bottom: 20px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}