@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  background-color: #1a1a1a;
  color: #f2f2f2;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

/* Container */
.footer-container {
  display: flex;
  flex-direction: column; /* Stack vertically on mobile */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Columns */
.footer-column h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

/* Logo & Contact Info */
.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-phone a,
.footer-email a {
  color: #ffffff;
  text-decoration: none;
}

.footer-phone a:hover,
.footer-email a:hover {
  text-decoration: underline;
}

.footer-address {
  margin: 5px 0;
  color: #cccccc;
  font-size: 0.95rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.85rem;
  color: #aaaaaa;
}

.footer-bottom a {
  color: #aaaaaa;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Desktop Layout (4 Columns) */
@media (min-width: 1024px) {
  .footer-container {
    flex-direction: row; /* Switch to row layout */
    justify-content: space-between;
  }

  .footer-column {
    flex: 1;
  }
}
