:root{
  --text:#202124;
  --muted:#5f6368;
  --border:#e0e0e0;
  --bg:#ffffff;
  --link:#1a73e8;

  --page-max: 1100px;  /* overall width like Google Sites */
  --sidebar: 260px;    /* left column width */
}

*{ box-sizing:border-box; }

.advisor-link{
  color: rgba(34, 110, 147, 1);
  font-weight: 500;
}

.advisor-link:hover{
  text-decoration: underline;
}

html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font: 16px/1.6 Roboto, Arial, Helvetica, sans-serif;
}

a{ color:var(--link); text-decoration:none; }
a:hover{ text-decoration:underline; }

/* Top bar */
.topbar{
  background:#fff;
  border-bottom:1px solid var(--border);
}
.hello{
  font-size: 40px;        /* matches Google Sites hero scale */
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 16px;
  color: rgba(34, 110, 147, 1);         /* Google Sites blue */
}
.content h2.hello{
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 16px;
  color: rgba(34, 110, 147, 1);
}
.gs-bullets{
  margin: 6px 0 18px 18px;
  padding: 0;
}

.gs-bullets li{
  margin: 4px 0;
}

.topbar-inner{
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 14px 20px;
  display:flex;
  align-items:center;
}

.site-title{
  font-size:20px;
  font-weight:500;
  color:var(--text);
}

.nav{
  margin-left:auto;
  display:flex;
  gap:22px;
}

.nav-link{
  font-size: 16.5px;      /* bigger tabs */
  font-weight: 500;       /* Google Sites–like weight */
  color: var(--muted);
  padding: 12px 4px;      /* taller click area */
  border-bottom: 2px solid transparent;
}
.nav-link:hover{ text-decoration:none; color:var(--text); }
.nav-link.active{
  color: var(--text);
  font-weight: 600;
  border-bottom-color: var(--text);
}

/* Page */
.page{
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 26px 20px 70px;
}

.page-title{
  font-size:26px;
  font-weight:500;
  margin: 0 0 22px;
}

/* Two-column layout (sidebar + main content) */
.layout{
  display:grid;
  grid-template-columns: var(--sidebar) 1fr;
  gap: 40px;
  align-items:flex-start;
}

/* Sidebar */
.sidebar{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.profile-photo{
  width: 160px;
  height: 160px;
  border-radius: 9999px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.profile-name{
  margin-top:12px;
  font-size:22px;
  font-weight:500;
}

.profile-email{
  margin-top:4px;
  font-size:14px;
  color:var(--muted);
}

.social{
  margin-top:10px;
  display:flex;
  gap:10px;
}

.icon-btn{
  width:34px;
  height:34px;
  border-radius:9999px;
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
}

.icon-btn svg{
  width:18px;
  height:18px;
  fill:var(--muted);
}

.icon-btn:hover svg{ fill:var(--text); }

/* Main content styling */
.content h2{
  font-size:20px;
  font-weight:500;
  mar
