#footer {
  background-color: black;
  display: flex;
  padding: 100px 20px 0 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#footer .footer-container {
  width: 100%;
}
#footer .footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
#footer .company-info {
  display: flex;
  flex-direction: column;
  width: 45%;
}
#footer .info-wrapper {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  font-family: Jost, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 400;
}
#footer .company-description {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  line-height: 24px;
  align-self: start;
}
#footer .copyright {
  color: white;
  font-size: 13px;
  line-height: 1.8;
  align-self: flex-end;
  margin-top: 98px;
}
#footer .footer-links-section {
  width: 42%;
  margin-left: 0;
}
#footer .links-container {
  display: flex;
  gap: 60px;
}
#footer .navigation-links {
  width: 42%;
}
#footer .footer-nav {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  font-family: Jost, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  color: white;
  font-weight: 400;
  line-height: 1.7;
}
#footer .section-title {
  color: white;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#footer .nav-link {
  color: white;
  text-decoration: none;
  padding: 0;
  padding-bottom: 12px;
  transition: color 0.3s ease;
}
#footer .nav-link:hover {
  color: #55E6A5;
  transition: 0.3s;
}
#footer .nav-link:first-of-type {
  margin-top: 25px;
}
#footer .nav-link-border {
  border-top: 1px solid #1f3127;
  padding: 12px 0;
}
#footer .contact-info {
  width: 58%;
  margin-left: 0;
}
#footer .contact-wrapper {
  display: flex;
  flex-direction: column;
  font-family: Jost, -apple-system, Roboto, Helvetica, sans-serif;
  color: white;
}
#footer .address-info {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  margin-top: 19px;
  font-style: normal;
}
#footer .contact-link {
  color: white;
  text-decoration: none;
  word-wrap: break-word;
  transition: color 0.3s ease;
}
#footer .contact-link:hover {
  color: #55E6A5;
  transition: 0.3s;
}
#footer .email-signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 19px;
}
#footer .email-input-wrapper {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
#footer .email-input {
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  padding: 12px 16px;
  border: 1px solid #848484;
  border-radius: 8px;
  background-color: #1B1B1B;
  transition: border-color 0.3s ease;
  flex: 1;
  min-width: 200px;
  box-sizing: border-box;
}
#footer .email-input:focus {
  outline: none;
  border-color: #55E6A5;
}
#footer .email-input:-webkit-autofill,
#footer .email-input:-webkit-autofill:hover,
#footer .email-input:-webkit-autofill:focus,
#footer .email-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #1B1B1B inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  box-shadow: 0 0 0 30px #1B1B1B inset !important;
  caret-color: #FFFFFF;
}
#footer .email-submit {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  background-color: #55E6A5;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
#footer .email-submit:hover {
  background-color: #32A873;
}
#footer .footer-copyright {
  display: flex;
  margin-top: 60px;
  border-top: 1px solid #1f3127;
  width: 100%;
  justify-content: center;
}
#footer .copyright-text {
  font-family: Jost, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: white;
  text-align: left;
  max-width: 1200px;
  width: 100%;
}
#footer .iwd-logo{
  height: 60px;
  width: auto;
  display: block;
  cursor: pointer;
}
#footer .privacy-policy-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
#footer .privacy-policy-link:hover {
  color: #55E6A5;
  transition: 0.3s;
}
@media (max-width: 991px) {
  #footer {
    padding: 80px 20px 0 20px;
  }
  #footer .iwd-logo {
    height: 50px;
  }
  #footer .footer-container {
    max-width: 100%;
  }
  #footer .footer-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  #footer .company-info {
    width: 100%;
    margin-top: 40px;
  }
  #footer .info-wrapper {
    max-width: 100%;
  }
  #footer .company-description {
    max-width: 100%;
  }
  #footer .copyright {
    margin-top: 40px;
  }
  #footer .footer-links-section {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
  #footer .links-container {
    flex-direction: column;
    gap: 0;
  }
  #footer .navigation-links {
    width: 100%;
  }
  #footer .footer-nav {
    margin-top: 25px;
  }
  #footer .nav-link-border {
    padding-right: 20px;
  }
  #footer .contact-info {
    width: 100%;
    margin-left: 0;
  }
  #footer .contact-wrapper {
    margin-top: 25px;
  }
  #footer .email-signup {
    max-width: 500px;
  }
  #footer .email-input-wrapper {
    flex-direction: column;
  }
  #footer .email-input {
    width: 100%;
    min-width: 100%;
  }
  #footer .email-submit {
    width: 100%;
  }
}
