body {
  margin: 0;
  font-family: "Georgia", serif;
  background-color: #fafafa;
  color: #222;
}

/* Layout */
.layout {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  max-width: 1200px;
}

/* Sidebar */
.sidebar {
  width: 180px;
  background-color: #f3f3f3;
  padding: 20px;
  border-right: 1px solid #ccc;
  height: 100vh;
  position: sticky;
  top: 0;
  /* display: flex;
  flex-direction: column;
  justify-content: space-between; */
}

.sidebar-logo {
  width: 180px;
  height: auto;
  margin: 20px auto 20px auto;
  opacity: 0.9;
}

.sidebar h3 {
  margin-top: 0;
  color: #003366;
  font-size: 18px;
}

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

.sidebar li {
  margin: 10px 0;
}

.sidebar a {
  color: #0044cc;
  text-decoration: none;
}

.sidebar a:hover {
  text-decoration: underline;
}

/* Main content */
.main {
  flex-grow: 1;
  padding: 40px;
}

header h1 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 10px;
}

hr {
  border: none;
  border-top: 1px solid #aaa;
  margin: 10px 0 20px 0;
}

.hr-double {
  border: none;
  border-top: 1px solid #aaa;
  margin: 10px 0 20px 0;
}

/* Profile section */
.profile {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.profile img {
  width: 225px;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.info {
  font-size: 16px;
  line-height: 1.5;
}

.info a {
  color: #0044cc;
  text-decoration: none;
}
.info a:hover {
  text-decoration: underline;
}

/* Section titles */
section h2 {
  font-size: 24px;
  color: #003366;
  margin-bottom: 5px;
}

section h3 {
  font-size: 20px;
  color: #003366;
  margin-top: 20px;
}

section p {
  font-size: 16px;
  line-height: 1.3;
}

section ul, ol {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Links */
a {
  color: #0044cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
