@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

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

body {
   height: 100dvh;
   font-family: "Inter", sans-serif;
   font-size: 1rem;
   font-weight: 400;
}

a {
   text-decoration: none;
   color: #4e80ee;
}

ul,
ol {
   list-style-position: outside;
   padding-left: 19px;
}

header, footer {
   background-color: #ffffff;
}

main {
   background-color: #f8fafc;

   display: flex;
   justify-content: center;
   align-items: center;
}

.faq__header {
   width: 100%;
   margin-block: 4rem;

   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;

   gap: 1rem;
}

.faq__container {
   width: 600px;
   margin-block: 4rem;

   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.faq__title {
   font-size: 2.25rem;
   font-weight: 600;
}

.faq__question {
   font-size: 1.5rem;
   font-weight: 600;
}

.faq__answer,
.faq__help,
.faq__more-info {
   margin-block: 0.5rem;
}

.faq__divider {
   height: 1px;
   width: 640px;
   background-color: #d2d5da;
   margin-block: 2rem;
   margin-left: 2.5rem;
}

.faq__section {
   width: 100%;

   display: flex;
   flex-direction: column;
   
   gap: 1rem;
}

.faq__steps,
.faq__return-policy {
   display: flex;
   flex-direction: column;
   line-height: 2rem;
}

.author-info {
   font-size: 0.875rem;
   text-align: center;
   padding-block: 1rem;
   color: rgb(55, 65, 81);
}
