* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito Sans", sans-serif;
  margin: 0;
  padding: 0;
  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;
}

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

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-section .contact-form {
  flex: 1;
  min-width: 280px;
}
.contact-section .contact-form h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.contact-section .contact-form p {
  margin-bottom: 1.5rem;
  color: #555;
}
.contact-section .contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-section .contact-form form label {
  font-size: 0.9rem;
  margin: 0.5rem 0 0.3rem;
}
.contact-section .contact-form form input,
.contact-section .contact-form form textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.contact-section .contact-form form textarea {
  min-height: 100px;
}
.contact-section .contact-form form .submit-btn {
  background: #ff5722;
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-section .contact-form form .submit-btn:hover {
  background: #e64a19;
}
.contact-section .contact-image {
  flex: 1;
  min-width: 280px;
}
.contact-section .contact-image img {
  width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq-section {
  padding: 4rem;
  background: #fff;
}
.faq-section h2 {
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: -0.06rem;
  font-weight: 600;
}
.faq-section p {
  margin: 0.5rem 0 2rem;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.faq-section .faq {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-section .faq summary {
  padding: 1rem;
  cursor: pointer;
  font-size: 1.125rem;
  background: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-weight: 700;
  line-height: 1.5;
}
.faq-section .faq summary:hover {
  background: #f0f0f0;
}
.faq-section .faq summary::after {
  content: "+";
  font-weight: bold;
}
.faq-section .faq[open] summary::after {
  content: "-";
}
.faq-section .faq p {
  margin: 0;
  background: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.faq ul {
  margin-bottom: 0rem;
  list-style-type: disc;
  margin-top: 0.5rem;
  padding-left: 2rem;
}

.faq li {
  padding-bottom: 0.5rem;
}

.faq ol {
  list-style-type: decimal;
  margin-bottom: 1rem;
}

.answer {
  padding: 1rem;
  padding-right: 2rem;
}

.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;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-section .contact-form {
    max-width: 600px;
    width: 100%;
  }
  .contact-section .contact-form form {
    align-items: stretch;
  }
  .contact-section .contact-image {
    max-width: 600px;
    width: 100%;
  }
  .contact-section .contact-image img {
    max-height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
  .contact-section {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .contact-section .contact-form h2 {
    font-size: 1.5rem;
  }
  .contact-section .contact-form p {
    font-size: 0.9rem;
  }
  .contact-section .contact-form form input,
  .contact-section .contact-form form textarea {
    font-size: 0.9rem;
  }
  .contact-section .contact-form .submit-btn {
    font-size: 0.9rem;
    padding: 0.7rem;
  }
  .contact-section .contact-image img {
    border-radius: 15px;
  }
  .faq-section {
    padding: 1.5rem;
  }
  .faq-section p {
    font-size: 1rem;
  }
  .faq-section .faq summary {
    padding: 0.8rem;
    font-weight: 600;
    line-height: 1.5;
  }
}
@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;
  }
}
@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;
  }
}