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

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

body {
  font-family: "Outfit", sans-serif;
  min-width: 375px;
  max-width: 1440px;
  font-size: 16px;
}

.bg-container {
  background-color: var(--Stone-100);
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-card {
  background-color: var(--White);
  color: var(--Stone-900);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 2rem;
  width: 60%;
  margin: 6rem;
}

.page-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.page-card h1 {
  font-family: "Young Serif", serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin: 20px 20px 0 0;
}

.page-card h2 {
  font-family: "Young Serif", serif;
  font-weight: 400;
  margin: 20px 20px 0 0;
  color: var(--Brown-800);
}

.page-card p {
  margin: 20px 0;
}

.page-card ul {
  margin: 20px 0;
  line-height: 2;
  padding-left: 20px;
  text-indent: 1rem;
  list-style-type: square;
}

.page-card ul li::marker {
  color: var(--Rose-800);
  font-size: 0.7em;
}

.page-card ol {
  list-style-position: outside; /* default, but you can try 'inside' */
  padding-left: 1.5em;          /* adjust as needed */
  text-indent: 0;               /* ensures text starts at the same line */
}

.page-card ol li {
  margin: 1em 0;
  padding-left: 0.8em;
  line-height: 1.7;
}

.page-card ol li::marker {
  color: var(--Rose-800);
  font-weight: 600;
}

.prepare-card {
  background-color: var(--Rose-50);
  border-radius: 5px;
  padding: 1.5em 1.5em;
}

.prepare-card h3 {
  font-weight: 600;
  color: var(--Rose-800);
}

.prepare-card ul {
  list-style-type: disc;
  padding: 0.5em 0 0 1em;
  margin: 0;
}

.prepare-card ul li::marker {
  color: var(--Rose-800);
  font-size: 0.7em;
}

.page-card hr {
  margin: 1em 0 1em 0;
  border: none;
  height: 1px;
  background-color: var(--Stone-150);
}

.page-card strong {
  color: var(--Stone-600);
}

.page-card table {
  width: 100%;
  border-collapse: collapse; /* Ensures borders are shared between cells */
  table-layout: fixed;
}

.page-card table tr {
  border-bottom: 1px solid var(--Stone-150);
}

.page-card table tr td {
  padding: 1em 2em;
}

.page-card table tr:last-child {
  border-bottom: none;
}

.page-card table tr td:last-child {
  color: var(--Brown-800); /* Or any color you want */
  font-weight: 700;        /* Optional: make it bold */
}
