/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
  padding: 20px;
  position: relative;
}
/*
.top-link-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
*/
.header-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Align the nav inside the content column */
.top-nav {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.home-link {
  text-decoration: none;
  font-size: 0.95rem;
  color: #007acc;
  background: #e0f3ff;
  padding: 6px 12px;
  border-radius: 4px;
}

.home-link:hover {
  background-color: #d0ebff;
}

/* Header */
header {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.1rem;
  color: #555;
}

/* Main Content */
main {
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 15px;
}

summary {
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  outline: none;
}

summary::marker {
  color: #007acc;
}

details[open] summary {
  color: #007acc;
}

p {
  margin-top: 10px;
}

/* Career Summary */
.summary {
  margin-top: 40px;
  padding: 20px;
  background: #e9f5ff;
  border-left: 4px solid #007acc;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 60px;
  color: #777;
  font-size: 0.9rem;
  position: relative;
}

.footer-home-link {
  display: inline-block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #007acc;
  background: #e0f3ff;
  padding: 6px 12px;
  border-radius: 4px;
}

.footer-home-link:hover {
  background-color: #d0ebff;
}
