/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styles for the entire page */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Center the container with padding and shadow */
.container {
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Style for the main title */
h1 {
    font-size: 2em;
    color: #007acc;
    margin-bottom: 20px;
    font-weight: 700;
}

/* List styles for Project & Tools */
.project-list, .project-management-list {
    list-style: none;
    margin-top: 20px;
    padding-left: 0;
}

.project-list li, .project-management-list li {
    font-size: 1.1em;
    margin: 12px 0;
    padding: 10px;
    background-color: #e7f3ff;
    border: 1px solid #cfe2ff;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-list li:hover, .project-management-list li:hover {
    background-color: #d0ebff;
}

/* Style for icons within list items */
.project-list li img, .project-management-list li img {
    width: 30px;
    height: 30px;
    display: inline-block;
}

/* Subtitle for Project Management section */
h2 {
    font-size: 1.5em;
    color: #005f99;
    margin-top: 40px;
    font-weight: 600;
    text-align: left;
}

