/* Minimal, şık tek sayfa bilgi sayfası */
:root{
  --bg1:#e6fffa;
  --bg2:#f0f9ff;
  --card:#ffffffb3;
  --accent:#144391;
  --text:#0f172a;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Montserrat,system-ui,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background: #AAD9F5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}
.wrap{display:flex;flex-direction:column;align-items:center;gap:18px}
.card{
  width:100%;
  max-width:480px;
  background:linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.78));
  border-radius:16px;
  padding:36px 30px;
  box-shadow:0 10px 30px rgba(2,6,23,0.12);
  text-align:center;
  backdrop-filter:blur(6px) saturate(120%);
}
.logo{width:160px;height:160px;margin:0 auto 18px;overflow:hidden;border-radius:16px}
.logo img{width:100%;height:100%;display:block;object-fit:cover}
.company{font-size:18px;margin:6px 0 12px;letter-spacing:0.6px}
.address{font-style:normal;color:#334155;line-height:1.5;margin:0 0 14px}
.email{display:inline-block;padding:10px 18px;border-radius:10px;background:var(--accent);color:white;text-decoration:none;font-weight:600}
.email:hover{opacity:0.95}
.foot{font-size:13px;color:#64748b}

@media (max-width:420px){
  .card{padding:26px 18px;border-radius:12px}
  .logo{width:120px;height:120px}
}
