/* General page text styling for legal documents */
main {
    max-width: 1200px;         /* Prevents text from stretching too wide */
    margin: 0 auto;            /* Centers content horizontally */
    padding: 2rem 1.5rem;      /* Top/bottom and left/right padding */
    line-height: 1.6;
}

/* Space between sections */
section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #ffffff1a;    /* Keeps sections clean and easy to read */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Headings */
h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: left;
}

h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

/* Paragraph and list spacing */
p {
    margin-bottom: 1rem;
}


ul {
    padding-left: 4rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: #ffffff; /* Bizkey brand color */
    font-weight: bolder;
}