html, body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

.site-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 20px;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}

.menu a {
  font-family: "Times New Roman", Times, serif;
  font-size: 12pt;
  color: #000000;
  text-decoration: none;
}

.menu a:hover,
.menu a:focus {
  text-decoration: underline;
}

/* Dropdowns */
.menu > li {
  position: relative;
}

.has-dropdown > .menu-toggle {
  cursor: pointer;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  min-width: 200px;
  z-index: 1000;
}

.dropdown a {
  display: block;
  padding: 6px 12px;
}

.dropdown a:hover,
.dropdown a:focus {
  background-color: #f6f6f6;
  text-decoration: none;
}

.has-dropdown.open > .dropdown {
  display: block;
}

.content {
  padding: 24px 20px;
}

.content h1 {
  margin: 24px 0 8px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
}

.content p {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* Bachelor board layout */
.bachelor-board {
  position: relative;
  margin-top: 12px;
}

.bachelor-photo {
  display: block;
  max-width: 340px;
  width: 100%;
  height: auto;
  margin: 8px 0 0 0;
}

.bachelor-arrow {
  position: absolute;
  top: 20px;
  left: 320px;
  display: none;
}

.bachelor-note {
  position: absolute;
  top: 24px;
  left: 640px;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border: 1px dashed #000;
  display: none;
}

.bachelor-board.active .bachelor-arrow,
.bachelor-board.active .bachelor-note {
  display: block;
}


