*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f8f9fb;
    color:#1b1b1b;
    line-height:1.6;
}

.hero{
    background:linear-gradient(135deg,#0f2747,#1d4f91);
    color:white;
    text-align:center;
    padding:80px 20px;
}

.container{
    max-width:1100px;
    margin:auto;
}

.logo{
    width:180px;
    margin-bottom:25px;
}

h1{
    font-size:48px;
    margin-bottom:10px;
}

h2{
    color:#d4af37;
    margin-bottom:20px;
    letter-spacing:2px;
}

.aciklama{
    font-size:20px;
    margin-bottom:35px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:bold;
    transition:.3s;
}

.whatsapp{
    background:#25D366;
    color:white;
}

.instagram{
    background:#d4af37;
    color:#0f2747;
}

.btn:hover{
    transform:translateY(-3px);
    opacity:.9;
}

.services{
    padding:70px 20px;
    text-align:center;
}

.services h3{
    font-size:36px;
    margin-bottom:45px;
    color:#0f2747;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    max-width:1100px;
    margin:auto;
}

.card{
    background:white;
    border-radius:15px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h4{
    margin:20px 0 15px;
    color:#0f2747;
}

.contact{
    background:white;
    text-align:center;
    padding:70px 20px;
}

.contact h3{
    font-size:34px;
    color:#0f2747;
    margin-bottom:25px;
}

.contact p{
    margin:12px 0;
    font-size:18px;
}

footer{
    background:#0f2747;
    color:white;
    text-align:center;
    padding:25px;
}

@media(max-width:768px){

.logo{
    width:140px;
}

h1{
    font-size:34px;
}

h2{
    font-size:20px;
}

.aciklama{
    font-size:17px;
}

.btn{
    width:100%;
    max-width:280px;
}

}