:root{
  --bg:#050b16;
  --card:#0b1424;
  --border:#00e0a4;
  --border-soft:rgba(0,224,164,.45);
  --text:#eaf2ff;
  --muted:rgba(234,242,255,.75);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background:
    radial-gradient(900px 500px at 20% 10%, #0d2a44 0%, transparent 55%),
    radial-gradient(900px 500px at 80% 30%, #0a3b2f 0%, transparent 55%),
    linear-gradient(180deg,#050b16,#07152a);
  color:var(--text);
  min-height:100vh;
}

.container{
  max-width:980px;
  margin:0 auto;
  padding:40px 18px 80px;
}

.page-title{
  font-size:28px;
  font-weight:900;
  margin:0 0 8px;
}

.page-subtitle{
  color:var(--muted);
  margin-bottom:28px;
  line-height:1.5;
}

/* === ANA KART L力STES力 === */
.education-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.education-card{
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 22px;
  border-radius:14px;
  background:linear-gradient(180deg,rgba(12,20,36,.95),rgba(8,14,28,.9));
  border:2px solid var(--border-soft);
  text-decoration:none;
  color:var(--text);
  transition:.25s ease;
}

.education-card:hover{
  border-color:var(--border);
  box-shadow:0 0 0 1px rgba(0,224,164,.25),
             0 18px 40px rgba(0,0,0,.45);
  transform:translateY(-2px);
}

.education-icon{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  font-size:20px;
  background:rgba(255,255,255,.04);
}

.education-content h3{
  margin:0 0 6px;
  font-size:16px;
  font-weight:800;
}

.education-content p{
  margin:0;
  font-size:14px;
  color:var(--muted);
  line-height:1.45;
}

/* mobil */
@media(max-width:700px){
  .education-card{
    padding:16px;
  }
  .page-title{font-size:24px}
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}



