.footer {
  background-color: #1f1f1f;
  color: var(--white);
  font-family: sans-serif;
}

.top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-group > div {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
  gap: 10px;
}

.middle-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.newsletter {
  flex: 1;
  max-width: 300px;
}

.newsletter-input {
  display: flex;
  margin: 10px 0;
}

.newsletter-input input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 20px 0 0 20px;
}

.newsletter-input button {
  background: #d4f141;
  padding: 10px 15px;
  border: none;
  border-radius: 0 20px 20px 0;
}

.footer-columns {
  display: flex;
  gap: 40px;
  flex: 2;
  margin-top: 20px;
}

.footer-columns h4 {
  margin-bottom: 10px;
}

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

.footer-columns li {
  margin-bottom: 6px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 60px);
  gap: 10px;
}

.insta-img {
  width: 60px;
  height: 60px;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-section {
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  p{
    margin: 0 !important;
  }
}

.social-icons span {
  margin-right: 15px;
  font-size: 18px;
  
}

.bottom-links a {
  color: #ccc;
  margin: 0 5px;
  text-decoration: none;
}
