@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&family=Montserrat:wght@700&display=swap");

.footer {
  background-color: #ffffff;
  padding: 44px 29px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin: 0px;
}

.footer__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
}

.footer__main {
  align-self: center;
  display: flex;
  align-items: flex-start;
  gap: 40px 200px;
  font-family:
    Ubuntu,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: rgba(37, 74, 16, 1);
  flex-wrap: wrap;
}

/* Contact Info Section */
.contact-info {
  min-width: 240px;
  width: 297px;
  font-size: 23px;
  font-weight: 700;
}

.brand {
  display: flex;
  width: 100%;
  align-items: flex-end;
  gap: 6px;
}

.brand__logo {
  width: 61px;
  aspect-ratio: 0.98;
  object-fit: contain;
}

.brand__name {
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 44px;
  color: rgba(99, 60, 14, 1);
  margin: 0;
}

.contact-item {
  display: flex;
  margin-top: 12px;
  align-items: center;
  gap: 17px;
  line-height: 2;
}

.contact-item__icon {
  width: 30px;
  aspect-ratio: 1;
  object-fit: contain;
}

.contact-item__text {
  margin: 0;
  font-size: 20px;
}

/* Navigation Section */
.footer-nav {
  min-width: 240px;
  line-height: 2;
  width: 346px;
}

.footer-nav__title {
  font-size: 20px;
  font-weight: 1000;
  margin: 0;
}

.footer-nav__columns {
  display: flex;
  margin-top: 7px;
  width: 100%;
  gap: 17px;
  font-size: 15px;
  font-weight: 500;
}

.footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.f_nav{
  color: #104613;
  list-style: none;
}

/* Feedback Section */
.feedback {
  min-width: 240px;
  width: 395px;
}

.feedback__title {
  font-size: 23px;
  font-weight: 700;
  line-height: 2;
  margin: 0;
}

.form-field {
  margin-top: 5px;
}

.form-field__label {
  font-size: 15px;
  line-height: 18px;
}

.form-field__input,
.form-field__textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(56, 88, 20, 1);
  padding: 7px 4px;
  font-size: 11px;
  line-height: 18px;
}

.form-field__textarea {
  min-height: 76px;
  resize: vertical;
}
.form-button{
    height: 40px;
    width: 150px;
    position: relative;
    overflow: hidden;

    background-color: #104613;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border-radius: 8px;
    opacity: 1;
  }
  .upload-icon{
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
    font-family: "Open Sans", sans-serif;
    font-size:15px;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }
  .submit-button{
    height: 50px;
    width: 200px;
    position: absolute;
    cursor: pointer;
    top: 0%;
    left: 0%;
    opacity: 0;
  }

/* Footer Bottom Section */
.footer__bottom {
  display: flex;
  margin-top: 50px;
  width: 100%;
  align-items: flex-end;
  gap: 40px 50px;
  flex-wrap: wrap;
}

.copyright {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 11px;
  font-family:
    Ubuntu,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 18px;
  color: rgba(37, 74, 16, 1);
  font-weight: 700;
  line-height: 2;
  flex-wrap: wrap;
}

.copyright__icon {
  width: 24px;
  aspect-ratio: 1;
  object-fit: contain;
}

.copyright__text {
  margin: 0;
}

.legal-nav {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 50px;
  font-family:
    Ubuntu,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 18px;
  color: rgba(37, 74, 16, 1);
  font-weight: 700;
  line-height: 2;
  margin-left: 200px;
  margin-right: 50px;
}

.legal-nav__link {
  color: inherit;
  text-decoration: none;
}

.social-links {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 32px;
}

.social-link__icon {
  width: 30px;
  aspect-ratio: 1;
  object-fit: contain;
}



/* Responsive Styles */
@media (max-width: 991px) {
  .footer {
    padding: 20px;
  }

  .footer__main,
  .footer__bottom,
  .copyright,
  .brand__name {
    max-width: 100%;
  }

  .footer__bottom {
    margin-top: 40px;
  }

  .brand__name {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .legal-nav {
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
    gap: 20px;  
  }
  .copyright__text {
    font-size: 13px;
  }
  .copyright__icon{
    width: 15px;
  }
  .copyright{
    gap: 5px;
  }
}