.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px;
  background: linear-gradient(to top, #0b0a1f, #18153d);
}

.footer-section {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 80px);
  gap: 15px;
}

.footer-photo-grid img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.address p {
  margin: 8px 0;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #666cf1;
}

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

.links li {
  margin: 10px 0;
  cursor: pointer;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #666cf1;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}
