body{
margin:0;
font-family:Arial, sans-serif;
background:#f4f6f9;
min-height:100vh;
display:flex;
flex-direction:column;
}

/* CONTAINER */

.container{
width:90%;
max-width:1100px;
margin:auto;
}

/* HEADER */

.site-header{
background:#0B1F3A;
padding:22px 0;
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
}

/* LOGO */

.logo-link{
display:flex;
align-items:center;
text-decoration:none;
color:white;
}

.logo-img{
height:55px;
width:auto;
margin-right:14px;
}

.brand{
font-weight:900;
font-size:20px;
letter-spacing:2px;
color:white;
}

.brand .first-A{
font-size:28px;
}

/* MENU */

.menu a{
color:white;
text-decoration:none;
margin-left:32px;
font-weight:700;
font-size:15px;
letter-spacing:1px;
text-transform:uppercase;
transition:0.3s;
}

.menu a:hover{
color:#ccc;
}

/* HERO */

.hero{
background:#132C4B;
color:white;
padding:100px 0;
text-align:center;
}

.hero-content{
max-width:700px;
margin:auto;
}

/* FORM */

.section{
padding:60px 0;
}

.box{
background:white;
padding:30px;
border-radius:8px;
box-shadow:0 5px 25px rgba(0,0,0,0.05);
}

input{
width:100%;
padding:14px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:6px;
}

button{
width:100%;
padding:16px;
background:#0B1F3A;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
font-weight:600;
}

button:hover{
background:#132C4B;
}

/* MESAJ */

.success{
background:#d4edda;
color:#155724;
padding:15px;
margin-bottom:20px;
border-radius:6px;
}

.error{
background:#f8d7da;
color:#721c24;
padding:15px;
margin-bottom:20px;
border-radius:6px;
}

/* FOOTER */

.site-footer{
background:#0B1F3A;
color:white;
padding:40px 0;
margin-top:auto;
text-align:center;
width:100%;
}

.footer-inner{
max-width:1100px;
margin:auto;
}

.footer-title{
font-weight:bold;
margin-bottom:10px;
}

.footer-links{
margin:15px 0;
}

.footer-links a{
color:white;
text-decoration:none;
margin:0 10px;
}

.footer-links a:hover{
color:#ccc;
}

/* TAPU TERİMLERİ SAYFASI */

.menu-harf{
margin:20px 0;
}

.menu-harf a{
background:#0B1F3A;
color:white;
padding:8px 12px;
border-radius:4px;
font-weight:700;
display:inline-block;
margin:3px;
text-decoration:none;
}

.menu-harf a:hover{
background:#132C4B;
}

.harf h2{
background:#0B1F3A;
color:white;
padding:12px;
border-radius:6px;
font-size:22px;
}

.terim{
padding:10px 0;
border-bottom:1px solid #e5e5e5;
font-size:16px;
line-height:1.7;
}

.terim b{
color:#0B1F3A;
}