body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #ffffff; /* Changed to white for better contrast */
    color: #000000; /* Changed to black for better readability */
}

.container {
    display: flex;
    justify-content: space-around;
    margin: 20px;
}

.section {
   /* border: 1px solid #ccc;/* Removed border for cleaner look */
    padding: 20px;
    border-radius: 10px;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);/* Removed shadow for a flatter design */
    transition: transform 0.2s;
}

h2 {
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #001124; /* Darker blue for better contrast */
}

a:hover {
    text-decoration: underline;   

}





