body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

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

header, footer {
    background-color: rgb(233, 236, 237);
    color: white;
    padding: 15px;
    text-align: center;
}

h2, h3 {
    color: #0056b3;
}

p, ul {
    font-size: 16px;
    line-height: 1.6;
}

ul.list-unstyled {
    padding: 0;
    list-style: none;
}

ul.list-unstyled li::before {
    content: '\2022';
    color: #007bff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.bg-light {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.text-primary {
    color: #007bff !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.flex-grow-1 {
    flex-grow: 1;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}