:root {
    --theme-blue: #1e90ff;
    --theme-blue-dark: #1c86ee;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


p,ul {
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

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

li {
    margin: 10px 0;
    line-height: 1.6;
    border: none;
    display: list-item;
    justify-content: flex-start;
}

a {
    text-decoration: none;
    color: dodgerblue;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: dodgerblue;
}