*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:"Inter",sans-serif;
background:#f4f6fa;
display:flex;
justify-content:center;
padding:60px 30px;
}

.container{
width:1200px;
max-width:100%;
}

.hero{
display:grid;
grid-template-columns:1fr 220px;
gap:50px;
align-items:center;
margin-bottom:70px;
}

.Name{
font-family:"Bebas Neue",sans-serif;
font-size:72px;
letter-spacing:3px;
}

.Title{
font-size:26px;
margin-top:6px;
font-weight:500;
}

.Bio{
margin-top:18px;
font-size:16px;
line-height:1.7;
max-width:620px;
color:#444;
}

.heroImage img{
width:200px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.contentGrid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.tableCard{
background:white;
padding:28px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.tableCard h2{
margin-bottom:20px;
font-size:22px;
}

table{
width:100%;
border-collapse:collapse;
font-size:14px;
}

th{
text-align:left;
font-weight:600;
padding:12px;
border-bottom:2px solid #eee;
}

td{
padding:10px 12px;
border-bottom:1px solid #eee;
}

.right{
text-align:right;
}

.quartergrade{
color:#0066ff;
font-weight:600;
}

.aiCard{
background:white;
padding:28px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.aiCard h2{
margin-bottom:20px;
}

.chat {
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 90%;
}

.chat.me {
  background: #0066ff;
  color: #ffffff;
  margin-left: auto;
}

.chat.ai {
  background: #f1f1f1;
  color: #000000;
}

a{
color:#0066ff;
text-decoration:none;
font-weight:500;
}

a:hover{
text-decoration:underline;
}

.accent{
color:#0066ff;
}

.bold{
font-weight:600;
}