body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px auto; /* Center the content with auto margins */
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    max-width: 800px; /* Set a maximum width for better readability on larger screens */
    padding: 20px; /* Add padding for better spacing */
}
h1 {
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
}
h2 {
    color: #007bff;
    margin-bottom: 10px;
}
p {
    margin-bottom: 15px;
}
ul {
    margin-bottom: 15px;
    margin-left: 20px;
}
.characterization, .strengths, .weaknesses, .approach, .improvement, .blindspots {
    margin-bottom: 30px;
}

/* Style for the navigation menu */
nav {
background-color: #333;
color: white;
text-align: center;
}

/* Style for the navigation menu items */
nav ul {
display: flex;
justify-content: center;
padding: 10px;
list-style: none; /* Remove default list styles */
}

nav li {
margin: 0 15px;
}

nav a {
text-decoration: none;
color: white;
font-weight: bold;
font-size: 16px;
}

/* Change color on hover for better user experience */
nav a:hover {
color: #ffcc00;
}

/* Responsive Styles */
@media screen and (max-width: 600px) {
nav ul {
flex-direction: column; /* Stack items vertically */
align-items: center; /* Center items horizontally */
}

nav li {
margin: 10px 0; /* Add space between stacked items */
}
}
