:root {
    --primary-color: #007bff;  /* Blue */
    --secondary-color: #6c757d;  /* Gray */
    --background-color: #f8f9fa;  /* Light gray */
    --text-color: #212529;  /* Almost black */
}

body {

    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

a {
    color: var(--primary-color);
}

.container {
    padding: 20px;
    margin: auto;
    max-width: 1200px;
}

p {
    font-size: 0.8rem;
}

section {
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
}

h3 {
    font-size: 1rem;
    font-style: italic;
    text-transform: uppercase;
}

ul {
    list-style: disc;
    line-height: 19px;
    font-size: 13px;
    margin-left: 30px;
}
