/* Footer */
.site-footer {
  background: #0b132b;
  color: #cfd8ff;
  padding: 60px 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a {
  color: #cfd8ff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #22c55e;
}

.footer-services {
  list-style: none;
  padding: 0;
}

.footer-services li {
  margin-bottom: 8px;
}

.footer-services li a {
  color: #cfd8ff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-services li a:hover {
  color: #22c55e; /* highlight color on hover */
}

.brand-title {
  display: flex;
  align-items: center;
  gap: 10px;
}


.brand p {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

.contact li {
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links a {
  margin-left: 15px;
  color: #cfd8ff;
  text-decoration: none;
}