.footer {
  background: #2b2b2b;
  color: #ccc;
  padding: 40px 20px 10px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  color: #ffcc00;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.footer-column p, 
.footer-column a {
  display: block;
  color: #eee;
  font-size: 15px;
  margin-bottom: 6px;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column p i {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #444;
  color: #ddd;
  font-size: 14px;
  margin-top: 20px;
}

.footer-bottom a {
  color: #ffcc00;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
