body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 2rem;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

header .intro {
    flex: 1 1 500px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
}

header p {
    color: #555;
}

header .links a {
    color: #1a0dab;
    text-decoration: none;
    margin: 0 0.2rem;
}

header .links a:hover {
    text-decoration: underline;
}

header .profile-photo img {
    width: 175px;
    height: auto;
    border-radius: 25%;
    object-fit: cover;
}

section {
    margin-bottom: 2rem;
}

section h2 {
    font-size: 1.5rem;
    color: #111;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.3rem;
    margin-bottom: 0.5rem;
}

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

ul li::before {
    content: "•";
    color: #222;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.news-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 3rem;
}

.education-content {
  display: flex;
  align-items: flex-start;
  gap: 20px; /* space between text and image */
}

.education-content ul {
  flex: 1; /* take remaining space */
}

.education-image {
  width: 200px;      /* adjust as needed */
  height: auto;
  border-radius: 8px; /* optional rounded corners */
  flex-shrink: 0;     /* prevent image from shrinking */
}
