.header {
    display: none;
}

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

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5rem;
    margin: 0;
    color: #626262;
    background-color: #f8f8f8;
}

header {
    background-color: #f2f2f2;
    padding: 0px 14px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.nav img {
    height: 60px;
}

.container {
    max-width: 50%; /* Half the page width */
    margin-left: 0;
    padding: 0px 14px;
    text-align: left; /* Align the content to the left */
    margin-top: 20px;
}

h1 {
    font-size: 20px; /* Main title size */
    color: #000;
    margin-bottom: 20px;
}

h2 {
    font-size: 14px; /* Section headings */
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
    opacity: 1;
}

p,
ul li {
    font-size: 13px; /* Font size */
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

ul {
    margin-left: 20px;
    list-style-type: disc;
}

.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 20px;
}

.vs-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #626262;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.vs-checkbox--check {
    display: none;
    color: white;
    background-color: #626262;
    width: 100%;
    height: 100%;
    text-align: center;
    font-weight: bold;
}

.vs-checkbox.checked .vs-checkbox--check {
    display: block;
}

footer {
    margin-top: 40px;
    font-size: 12px;
    text-align: center;
    padding-bottom: 10px;
}

/* Responsive adjustments for smaller screens */
@media only screen and (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 20px;
    }

    h1 {
        font-size: 20px;
    }

    p,
    ul li {
        font-size: 12px;
    }
}