*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html, body{
    height:100%;
}

body{
    background:#f4f6f9;
    color:#333;
    display:flex;
    flex-direction:column;
}

/* HEADER */
header{
    background:#ffffff;
    box-shadow:0 6px 22px rgba(0,0,0,0.12);
    padding:18px 0;
}

.header-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */
.logo img{
    height:65px;
}

/* MENÜ */
nav a{
    margin-left:25px;
    text-decoration:none;
    font-weight:bold;
    color:#333;
    font-size:15px;
}

nav a:hover{
    color:#007c91;
}

/* SAYFA İÇERİĞİ */
.main{
    flex:1;
}

/* ANASAYFA METİN */
.home-box{
    max-width:900px;
    margin:90px auto;
    padding:45px;
    background:#ffffff;
    border-radius:18px;
    box-shadow:0 18px 40px rgba(0,0,0,0.18);
    text-align:center;
}

.home-box p{
    font-size:36px;
    line-height:1.6;
}

/* GENİŞ KUTU */
.container-wide{
    max-width:1200px;
    margin:60px auto;
    padding:55px 65px;
    background:#ffffff;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* BAŞLIK */
.page-title{
    font-size:32px;
    font-weight:bold;
    margin-bottom:30px;
    text-align:center;
}

/* METİN */
.info{
    font-size:16px;
    line-height:1.9;
}

/* HARİTA */
.map{
    margin-top:45px;
}

.map iframe{
    width:100%;
    height:460px;
    border:none;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* FOOTER – TAM GENİŞ, ORTALI */
footer{
    width:100%;
    background:#ffffff;
    box-shadow:0 -10px 25px rgba(0,0,0,0.2);
    padding:30px 0;
}

.footer-inner{
    max-width:1200px;
    margin:auto;
    text-align:center;
    font-size:14px;
    color:#555;
}
