:root {
--blue: #2f4f6f;
--dark: #444;
--border: #e5e5e5;
}


* {
box-sizing: border-box;
}

html {
  height: 100%;
}

body {
margin: 0;
font-family: system-ui, sans-serif;
background: #fff;
color: var(--dark);
height: 100%;
}


.header {
display: flex;
justify-content: center;
align-items: center;
padding: 16px 24px;
border-bottom: 1px solid var(--border);
position: relative;


}


.slogan {
color: var(--blue);
font-size: 0.95rem;
text-align: center;
}


.ataturk {
width: 48px;
  position: absolute;
  right: 24px;
  top: 5px;
}


.card {
max-width: 480px;
margin: 120px auto 80px;
padding: 30px 5px;
text-align: center;
border: 1px solid var(--border);
border-radius: 12px;
flex-shrink: 0;
width: 100%;
}


.logo {
width: 110px;
margin-bottom: 5px;
}


.card h1 {
margin: 10px 0 6px;
}


.card h2 {
margin: 4px 0;
font-size: 1.15rem;
font-weight: 500;
}


.card h3 {
margin: 4px 0;
font-size: 1.05rem;
font-weight: 400;
}

.card h4 {
margin: 4px 0;
font-size: 0.90rem;
font-weight: 300;
color: #2F4F6F;
}


.footer {
border-top: 1px solid var(--border);
padding: 20px;
text-align: center;
font-size: 0.85rem;
}


.footer nav {
margin-bottom: 8px;
}


.footer a {
margin: 0 10px;
text-decoration: none;
}

.footer-res {
width: 200px;	
}	

.footer-kont {
display: flex;
gap: 20px;
justify-content: center;
}

.footer-link {
justify-content: center;
border: 1px solid var(--border);
border-radius: 12px;
padding: 15px;
}	


.content {
  flex: 1;             
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  .footer-kont {
    flex-direction: column;
  }
}