/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.6;
  color: #1f271b;
}

nav .nav-brand {
  display: flex;
  padding: 2rem;
}
nav .nav-brand p {
  text-align: center;
  padding-right: 1rem;
  font-size: 23.58px;
  margin-top: 0.1rem;
  font-weight: 600;
  letter-spacing: -0.099rem;
}
nav .nav-brand img {
  width: 34.24px;
  height: 32px;
  margin-right: 0.4rem;
}

section {
  padding: 1rem 2rem;
}

h1 {
  text-align: center;
}

h2 {
  margin-top: 1.5em;
  padding-bottom: 0.3em;
}

h3 {
  margin-top: 1em;
}

ul {
  margin-left: 20px;
  list-style-type: disc;
}

li {
  margin-bottom: 0.5em;
  font-size: 1rem;
}

a {
  color: #ff4b00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.effective-date {
  text-align: center;
  margin-bottom: 2em;
  font-style: italic;
}

p {
  color: #1f271b;
  font-size: 1rem;
}

.main-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 0rem;
  background-color: #ffffff;
}

.footer-section {
  width: 90%;
}

.top-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 23.58px;
  font-weight: 600;
  letter-spacing: -0.099rem;
}
.footer-nav .nav-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-nav .nav-link {
  color: #1f2937;
  text-decoration: none;
  font-size: 1rem;
}

.newsletter-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter-form-wrapper .form-title {
  font-size: 1.125rem;
  font-weight: 600;
}
.newsletter-form-wrapper .form-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.newsletter-form-wrapper .input-field {
  flex-grow: 1;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
}
.newsletter-form-wrapper .subscribe-btn {
  background-color: #ff5722;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 3.75rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  width: 120px;
  height: 48px;
  font-size: 1rem;
}
.newsletter-form-wrapper .privacy-text {
  font-size: 0.875rem;
  color: #6b7280;
}

.bottom-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.bottom-section .copyright {
  font-size: 0.875rem;
  color: #1f271b;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bottom-section .social-icons {
  display: flex;
  gap: 1rem;
}
.bottom-section .social-icon {
  color: #1f2937;
  font-size: 1.25rem;
}
.bottom-section .copyright-links {
  display: flex;
  justify-content: space-around;
}

@media (min-width: 640px) {
  bottom-section {
    border-top: none;
    padding: 0px;
  }
  .footer-section {
    width: 90%;
  }
}
@media (min-width: 768px) {
  .main-container {
    padding: 2rem 0rem;
  }
  .top-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .bottom-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1020px) {
  nav {
    padding: 1rem 4rem;
  }
  nav .nav-brand {
    padding: 0;
    align-items: center;
  }
  nav .nav-brand p {
    font-size: 1.658rem;
    font-weight: 600;
    letter-spacing: -0.099rem;
  }
  section {
    padding: 1rem 4rem;
  }
  .footer-nav .logo {
    font-size: 1.658rem;
  }
}