.footer {
  padding: 80px 0 0;
  background-color: var(--primary-color);
  color: white;
}

.footer-bottom {
  background-color: #09375f;
}

.footer-widget h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  margin-top: 10px;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.footer-widget h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  font-family: "Montserrat", sans-serif;
}
.footer-widget p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 15px;
  color: white;
  transition: color 0.3s;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 15px;
  color: white;
}
.footer-contact i {
  margin-right: 10px;
  margin-top: 4px;
  color: var(--secondary-color);
  font-size: 16px;
}
.footer-contact span {
  flex: 1;
}
.social-footer {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-footer a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: all 0.3s;
}
.social-footer a:hover {
  background-color: var(--secondary-color);
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}
