/* About us page */
.about {
    display: flex;
    flex-direction: column;
    padding: 1em;
    margin: auto;
    width: fit-content;
    background-color: #f9f9f9; 
    font-size: 16px; 
    text-align: left; 
    border-radius: 10px; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 
}

.about-title {
    text-align: center;
    color: #800080; 
    font-weight: bold;
    margin-bottom: 10px;
}

.about a {
    font-weight: bold;
    text-decoration: underline;
    color: #0000ff; 
}

.about ol {
    list-style-type: decimal; 
    padding-left: 20px; 
}

.about ol li {
    margin-bottom: 10px; 
}

.about .contact {
    text-align: center;
}
