body {
  margin: 0;
  line-height: normal;
}

html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #4a4a4a;
}

ul,
ol,
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1196px;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .container {
    max-width: 560px;
    padding: 0 22px;
  }
}

.seconday-container {
  padding: 60px 90px 60px;
}

@media (max-width: 1023px) {
  .seconday-container {
    padding: 40px 22px;
  }
}

img {
  max-width: 100%;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  height: 60px;
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  header {
    height: 90px;
  }
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1023px) {
  .header-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

main {
  padding-top: 64px;
}

@media (max-width: 1023px) {
  main {
    padding-top: 94px;
  }
}

.logo {
  font-size: 24px;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  color: #ffbe27;
}
@media (max-width: 1023px) {
  .logo {
    padding-bottom: 12px;
  }
}

.menu li {
  font-family: "DM Sans", sans-serif;
  margin-left: 16px;
}

@media (max-width: 1023px) {
  .menu li {
    margin-left: 10px;
  }
}

.menu li a {
  font-size: 14px;
  text-decoration: none;
  padding: 4px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4a4a4a;
}

.menu li:hover {
  background: #ffbe27 0% 0% no-repeat padding-box;
  border-radius: 16px;
  opacity: 1;
}

.title {
  font-size: 36px;
  font-weight: 600;
  color: #794400;
  padding-bottom: 24px;
}

.top-categories-items {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

@media (max-width: 1023px) {
  .top-categories-items {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2%;
  }
}

.category-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.category-image {
  width: 96px;
  height: 96px;
}

.category-name {
  font-size: 16px;
}

.join-us {
  margin-top: 50px;
  background-color: #fffaf3;
  position: relative;
}

@media (max-width: 1023px) {
  .join-us {
    margin-top: 0px;
  }
}

.contact-us {
  width: 840px;
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 1023px) {
  .contact-us {
    width: 100%;
    flex-direction: column;
  }
}

.contact-us-item {
  display: flex;
  padding-bottom: 16px;
}

.contact-us-item-text {
  font-size: 24px;
}

.contact-us-item-image {
  margin-right: 10px;
}

.footer-logo {
  color: #000;
  font-size: 24px;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  margin-bottom: 8px;
}

.footer {
  border-top: 1px #000 solid;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.copyright {
  font-size: 12px;
}

.why-us-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4%;
  text-align: center;
}

@media (max-width: 1023px) {
  .why-us-wrapper {
    grid-template-columns: 1fr; /* 1 column, stacking items into 2 rows */
    grid-template-rows: auto auto;
  }
}

.why-us-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.why-us-title {
  text-align: center;
  padding-bottom: 40px;
}

.why-us-title-subtitle {
  font-size: 24px;
}

.why-us-text {
  font-size: 16px;
  line-height: 36px;
}

@media (max-width: 1023px) {
  .why-us-text {
    padding-bottom: 30px;
  }
}

.who-we-are-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  column-gap: 4%;
}

@media (max-width: 1023px) {
  .who-we-are-wrapper {
    grid-template-columns: 1fr; /* 1 column, stacking items into 2 rows */
    grid-template-rows: auto auto;
  }

  .who-we-are-wrapper img {
    margin: 20px 0 0px;
  }
}

.who-we-are-text {
  font-size: 16px;
  line-height: 36px;
}

.join-us-container {
  padding-bottom: 0;
}

.join-us-wrapper {
  display: grid;
  grid-template-columns: 1fr 40%;
  column-gap: 4%;
}

@media (max-width: 1023px) {
  .join-us-wrapper {
    padding-top: 40px;
    grid-template-columns: 1fr; /* 1 column, stacking items into 2 rows */
    grid-template-rows: auto auto;
  }
}

.join-us-title {
  line-height: 55px;
}

.join-us-text {
  font-size: 16px;
  line-height: 36px;
}

/* policy-section */
.policy-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: "Inter", sans-serif;
}
.policy-section h1,
.policy-section h2 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.policy-section h1 {
  font-size: 1.5rem;
}
.policy-section ul {
  list-style: disc;
  margin-left: 1.5rem;
}
.policy-section ol {
  list-style: decimal;
  margin-left: 1.5rem;
}
.policy-section p,
.policy-section li,
.policy-section div {
  font-size: 0.95rem;
  line-height: 1.6;
}
.policy-section .section {
  margin-bottom: 2rem;
}
.policy-section .email {
  font-weight: bold;
}

.footer-menu {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-menu li {
  list-style: none;
}

.footer-menu li a {
  color: #000;
}

.footer-menu li a:hover {
  text-decoration: none;
}
