body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header, section {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header {
    display: flex;
    align-items: center;
    gap: 20px;
}

header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

h1, h2 {
    color: #007acc;
}

ul {
    padding-left: 30px;
}

.entry-list {
    list-style: none;
    padding-left: 0;
}

.entry-item {
    margin-bottom: 20px;
    position: relative;
}

.entry-link {
    text-decoration: none;
    color: #007acc;
}

a:hover, .entry-link:hover {
    text-decoration: underline;
}

.logo-container {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.graduation-cap {
    position: absolute;
    top: -10px;
    right: -10px;
    transform: rotate(45deg);
    font-size: 18px;
}