
    /* Footer */
.footer {
  background: #222;
  color: #ddd;
  padding: 50px 10% 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #f99a21;
  font-size: 1.2rem;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

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

.footer-col ul li a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #f99a21;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.2rem;
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #f99a21;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
}