/*************/
/**CSS Reset Start**/
/*************/

*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui,sans-serif;
}

img {
    max-width: 100%;
    display: block;
}


/*************/
/**CSS Reset End**/
/*************/

:root {
    --color-bg: #ffffff;
    --color-text-primary: #1B213C;
    --color-text-secondary: #969696;
    --font-body-copy:1rem;
    --font-family-headings: 'Space Grotesk', sans-serif;
    --font-family-body-copy: 'Inter', sans-serif;
}

main {
    background-color: #ECEBFF;
    min-height: 100vh;
    padding-bottom: 0.8rem;
}

h1 {
    color: var(--color-text-primary);
    font-family: var(--font-family-headings);
    font-weight: 400;
    line-height: 1.2;
    font-size: 2.5rem;
}

header {
    background-color: var(--color-bg);
    padding: 1.5rem;
}

header > p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-family: var(--font-family-body-copy);
}


section {
  padding: 1.5rem;
  background-color: var(--color-bg);
  margin: 1.5rem;
  border-radius: 16px;
}



h2 {
    color: var(--color-text-primary);
    font-family: var(--font-family-headings);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: center;
}


dl {
    padding: 1.2rem 0 0 0;
    margin: 0;
}

dl div {
    display: grid;
    gap: 0.25rem;
    text-align: left;
    font-family: var(--font-family-body-copy);
    color: var(--color-text-primary);
    font-size: var(--font-body-copy);
    margin-bottom: 1rem;
}

dd {
    padding: 0;
    margin: 0;
    font-weight: bold;
}

button {
    border-radius: 16px;
    background-color: #4A4A4A;
    padding: 0.7rem 0.6rem;
    font-family: var(--font-family-body-copy);
    color: var(--color-bg);
    font-size: 0.9rem;
    margin-top: 1rem;
    border: none;
    width: 100%;
}

hr {
    border-top: 1px solid #E3E3E3;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {

dl div {
    grid-template-columns: 1fr 5fr;
    justify-items: start;
    text-align: left;
}


h2 {
    text-align: left;
}

button {
    width: auto;
}


}