.custom-footer {
  background-color: rgb(29, 26, 72);
  color: #f1f2f6;
  font-family: 'Poppins', sans-serif;
  padding: 60px 30px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section h4 {
  font-size: 15px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a,
.footer-section p,
.footer-section a {
  color: #dcdde1;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover,
.footer-section a:hover {
  color: #ffb26b;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #3e444f;
  padding-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin: 0 8px;
  background: #ffffff;
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  font-size: 15px;
  transition: 0.4s;
}

.social-icons a:hover {
  background: #ffb26b;
  color: #000;
}

a.address {
  text-decoration: none;
  color: #dcdde1; /* or your preferred color */
}

a.address:hover {
  text-decoration: none;
  color: #ffb26b; /* optional: change color on hover */
}
