/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.6;
  color: #222;
  background-color: #fdfdfd;
}

/* Layout */
.container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

/* Header */
header {
  background: #cdece7; /* light teal */
  border-bottom: 1px solid #b2dbd3;
  padding: 2em 0;
}

header .container {
  display: flex;
  align-items: center;
  gap: 1.5em;
}

.profile-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #9ccac1;
  background-color: #fff;
}

h1 {
  font-size: 1.8em;
  margin-bottom: 0.2em;
  color: #003b35;
}

.title {
  font-weight: bold;
  color: #003b35;
}

.institution {
  font-style: italic;
  color: #004c43;
  margin-bottom: 0.5em;
}

/* Sections */
section {
  margin: 2em 0;
}

h2 {
  font-size: 1.4em;
  margin-bottom: 0.5em;
  border-bottom: 2px solid #b2dbd3;
  padding-bottom: 0.2em;
  color: #004c43;
}

ul {
  list-style-type: disc;
  margin-left: 1.5em;
}

ol {
  margin-left: 1.5em;
}

.courses li {
  margin-bottom: 0.0em;
}

a {
  color: #006a60;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #666;
  margin: 2em 0 1em;
  border-top: 1px solid #ddd;
  padding-top: 1em;
}

