/* Existing styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    text-align: center; /* Center-align the text */
}

.center-image {
    max-width: 20%;
    height: auto;
    margin-bottom: 20px; /* Space between the image and text */
}

header {
    background-color: #00bcd4; /* Cyan accent color */
    color: white;
    padding: 10px 0;
    text-align: center;
}

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

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 20px;
    background-color: white;
    margin: 20px auto; /* Center the main content */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px; /* Set a maximum width for the content */
}

footer {
    background-color: #00bcd4; /* Cyan accent color */
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* New styles for About page */
.about-content {
    text-align: left; /* Align text to the left for readability */
    padding: 20px;
}

.about-content h1 {
    color: #00bcd4; /* Cyan accent color */
    text-align: center; /* Center the main title */
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.qualifications-list {
    list-style-type: none; /* Remove bullet points */
    padding: 0;
    margin-top: 10px;
}

.qualifications-list li {
    background-color: #e0f7fa; /* Light cyan background for list items */
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}
