:root {
   --White: hsl(0, 0%, 100%);
   --Stone-100: hsl(30, 54%, 90%);
   --Stone-150: hsl(30, 18%, 87%);
    --Stone-600: hsl(30, 10%, 34%);
    --Stone-900: hsl(24, 5%, 18%);
    --Brown-800: hsl(14, 45%, 36%);
    --Rose-800: hsl(332, 51%, 32%);
    --Rose-50: hsl(330, 100%, 98%);   
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font: inherit;
}
@font-face {
    font-family: "Outfit";
    src: url("assets/fonts/outfit/Outfit-VariableFont_wght.ttf");
}
@font-face {
    font-family: "Young Serif";
    src: url("assets/fonts/young-serif/YoungSerif-Regular.ttf");
}
body {
    font-family: "outfit",sans-serif;
    background-color: var(--Stone-100);
    color: var(--Stone-900);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 123px;
}
.container {
    max-width: 736px;
    width: 100%;
    background-color: var(--White);
    padding: 40px;
    border-radius: 24px;
}
.container img {
    width: 100%;
    border-radius: 12px;
    display: block;
}
.container h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    margin-block: 20px;
}
.container p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(95, 86, 77, 1);
    margin-bottom: 20px;

}
.list1 {
     background: rgba(255, 247, 251, 1);
     padding: 28px;
     border-radius: 12px;
}
.list1 h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    color: rgba(122, 40, 78, 1);
    padding-bottom:18px;
}
.list1 ul {
    padding-left: 40px;
}
.list1 ul li {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: rgba(95, 86, 77, 1);
}
.list1 ul li span {
    font-weight: normal;
}
::marker {
    color:rgba(122, 40, 78, 1) ;
}
.list2 h2{
    font-size: 28px;
    font-weight: 600;
    line-height: 100%;
    color: #854632;
    margin-block: 38px;
}
.list2 ul {
    padding-left: 40px;
    margin-bottom: 32px;
}
.list2 ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: rgba(95, 86, 77, 1);
}
.list3 ol {
    padding-left: 20px;
    margin-bottom: 32px;
}
.list3 h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 100%;
    color: #854632;
    margin-block: 38px;
}
.list3 ol li {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: rgba(95, 86, 77, 1);
    padding: 8px;

}
.list3 ol li span {
    font-weight: normal;
}
.list4 h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 100%;
    color: #854632;
    margin-block: 38px;
}
.list4 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #5f564d;
}
.list4 ul li span {
    width: 50%;
    display: inline-block;
}
.list4 ul li {
    display: flex;
    line-height: 40px;
    margin-inline: 32px;
}
.list4  li span:last-child {
    font-weight: 700;
    color: #854632;

}
@media (max-width:375px) {
    body {
        padding: 0;
        background: none;
        padding: 0;

    }
    .container {
        padding: 0;
    }
    .container img {
        border-radius: 0;
    }
    .container2 {
        padding: 40px;
    }
}

hr {
    border: none;
    background-color: #E3DDD7;
    height: 1px;
}

