body {
    font-family: sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #000000;
    margin: 0;
    padding: 0;
    font-size: 22px;
    line-height: 32px;
}

b {
    font-weight: 400; /* or you can use 'bold' */
}

a {
    text-decoration: underline;
    color: #000000;
}


header {
    height: 96px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 800px;
    margin: 0 auto;
    padding: 0; /* Removed padding */
}

.logo {
    width: 100px; /* Adjust as needed */
    height: auto;
}

.content-container {
    display: flex;
    width: 800px;
    padding: 120px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 120px;
    margin: 0 auto;
}

.content-block {
    gap: 40px;
}

.headline {
    color: #000;
    font-size: 40px;
    line-height: normal;
    font-weight: 300;
    font-style: normal;
}

p {
    color: #000;
    font-size: 22px;
    line-height: 32px;
}

ul {
    list-style-type: disc; /* Default bullet type */
    padding-left: 24px; /* Adjust as needed */
}

li {
    color: #000;

}


@media (max-width: 768px) {
    /* Make header width full and center contents */
    header {
        width: calc(100% - 24px);
        padding: 0 12px; /* Add padding on smaller screens */
    }
    
    /* Adjustments for the logo and text link */
    .logo {
        /* Add any specific mobile styles for the logo here */
    }

    .text-link {
        /* Add any specific mobile styles for the text link here */
    }

    .content-container {
        width: calc(100% - 24px);
        padding: 80px 12px;
        gap: 80px;
    }

    body {
        font-size: 20px;
        line-height: 28px;
    }
    p {
        font-size: 20px;
        line-height: 28px;
    }

}