
.footer-container {
  background: #20212b;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 50px;
  margin-top: 50px;
  
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 15px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  background-color: #444;
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-heading {
  color: #fff;
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  margin-bottom: 10px;
  /* color: var(--main-color); */
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
  color: var(--header-text-color);
}

.newsletter-container {
  position: relative;
  display: flex;
  flex-direction: column;
justify-content: center;
align-items: center;

}

.newsletter-input {
  width: 100%;
  padding: 15px 20px;
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 16px;
}


.footer-copyright {
  background-color: #222;
  padding: 20px 15px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.footer-right {
  text-align: right;
}
