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

h1,
h2 {
  font-family: "Young Serif";
}

h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
  color: #854632;
}

p,
ul,
ol,
table {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #5f564d;
}

ul,
ol {
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  margin-left: 8px;
}

ul {
  list-style-type: none;
}

ul li {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
}

ul li::before {
  content: "•";
  color: #854632;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

ol li {
  text-indent: -24px;
  padding-left: 24px;
}

ol li::marker {
  font-weight: 700;
  color: #854632;
}

table {
  border-collapse: collapse;
  padding: 32px;
  margin-top: -12px;
}

td {
  border-bottom: 1px solid #e3ddd7;
  padding: 12px 32px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 32px;
}

.image-container {
  width: 100%;
  height: 171px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header-container h1 {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  color: #312e2c;
}

.preparation-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 16px;

  background: #fff7fb;
  border-radius: 12px;
}

.preparation-container p {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #7a284e;
}

.separator {
  width: 100%;
  height: 0px;
  border: 1px solid #e3ddd7;
}

.strong {
  font-weight: 700;
  color: #854632;
}

@media (min-width: 768px) {
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3e5d7;
    padding: 128px 48px;
  }

  main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 40px;
    width: 616px;
    background: #ffffff;
    border-radius: 24px;
  }

  .content-wrapper {
    padding: 0;
  }

  .image-container {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
  }
}

@media (min-width: 1440px) {
  main {
    width: 736px;
  }
}
