body {
  margin: 0;
  padding: 0;
  font-family: Georgia, serif;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

header {
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  font-size: 32px;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 18px;
  color: #666;
}

.bio {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile {
  width: 300px;         /* Increase size */
  height: auto;         /* Maintain aspect ratio */
  object-fit: contain;  /* Prevent cropping */
  border-radius: 8px;   /* Optional: rounded corners */
  margin-bottom: 20px;
}


.links h2 {
  font-size: 20px;
  margin-top: 40px;
}

.links ul {
  list-style-type: none;
  padding: 0;
}

.links li {
  margin: 10px 0;
}

.links a {
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
}

.links a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #999;
}

.topnav {
  background-color: #333;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topnav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.topnav li {
  margin: 0 20px;
}

.topnav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.topnav a:hover {
  text-decoration: underline;
}

.dropdown {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.dropdown-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.dropdown-content {
  display: none;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.dropdown.open .dropdown-content {
  display: block;
}

.dropdown.open .arrow {
  transform: rotate(180deg);
}



