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

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.wrapper {
    max-width: 800px; /* Adjust this value to control the width */
    width: 100%;
}

header {
    background: #005792;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

header h1 {
    margin-bottom: 8px;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

section {
    background: #ffffff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
}

section h2 {
    color: #005792;
    margin-bottom: 10px;
}

section p, section ul {
    margin-top: 0;
}

ul {
    list-style-type: none;  /* Remove default bullet styling */
    padding: 0;            /* Remove padding */
    margin-left: 20px;     /* Add some left margin for indentation */
}

li {
    position: relative;    /* Establish positioning context */
    padding-left: 20px;    /* Space for the bullet before text starts */
    margin-bottom: 10px;   /* Space between list items */
}

li::before {
    content: '';           /* Create a custom bullet */
    position: absolute;    /* Position absolutely within the li */
    left: 0;               /* Align to the left */
    top: 0.8em;            /* Align the bullet with the first line of text */
    width: 6px;            /* Width of the custom bullet */
    height: 6px;           /* Height of the custom bullet */
    background-color: #005792; /* Bullet color */
    border-radius: 50%;    /* Make the bullet round */
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
    width: 100%;
}

footer a {
    color: #50d8d7;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    body {
        padding: 40px;
    }

    header, section, footer {
        padding: 40px 20px;
    }
}
