/* Footer Styles */
footer {
  background: #000000;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
  border-top: 1px solid #333;
  width: 100%;
  margin: 0;
}

footer .footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  box-sizing: border-box;
}

footer .footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  white-space: nowrap;
  margin-bottom: 24px;
  justify-content: center;
  align-items: center;
}

footer .footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

footer .footer-links a:hover {
  text-decoration: underline;
  color: #ffa500;
}

footer .footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

footer .social-icons {
  display: flex;
  gap: 12px;
}

footer .social-icons a {
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

footer .social-icons a:hover {
  color: #ffa500;
  background: rgba(255, 165, 0, 0.2);
}

footer .footer-legal {
  max-width: 100%;
  text-align: center;
}

footer .footer-legal p {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 13px;
  color: #cccccc;
}

footer .footer-legal ol {
  margin-left: 20px;
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 13px;
  color: #cccccc;
}

footer .footer-legal strong {
  color: #ffffff;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 24px auto;
  max-width: 800px;
}

footer .footer-section {
  margin-bottom: 0;
}

footer h4 {
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: bold;
  color: #ffffff;
}

footer .footer-section p {
  font-size: 13px;
  line-height: 1.5;
  color: #cccccc;
}

footer .footer-section strong {
  color: #ffffff;
}

footer .legal-copyright {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #333;
  text-align: center;
}

footer .legal-copyright p {
  font-size: 12px;
  line-height: 1.5;
  color: #999999;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  footer .footer-container {
    padding: 20px 12px;
  }
  
  footer .footer-links {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  footer .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  
  footer .social-icons {
    margin-top: 12px;
  }
  
  footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px auto;
    max-width: 100%;
  }
  
  footer .legal-copyright {
    margin-top: 20px;
    padding-top: 16px;
    text-align: center;
  }
}
