* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   scroll-behavior: smooth;
}

body{
    /* height: 230vh; */
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.info-hero{
    position: absolute;
    height: 100vh;
    height: 100%;
    z-index: 1;
    padding-bottom: 300px;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
    align-items:center;
}

.navbar-content{
    position: absolute;
    height: 100vh;
    height: 100%;
    z-index: 1;
    padding-bottom: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items:center;
}

/* Tablet ve Mobil için düzeltmeler - Servis sayfaları */
@media only screen and (max-width: 1024px){
    .navbar-content{
        height: 100%;
        justify-content: flex-start;
        padding-top: 15px;
        padding-bottom: 0;
    }
    
    .navbar-content .navbar {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .content{
        margin-top: auto;
        padding: 40px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .info-hero{
        height: 100%;
        justify-content: flex-start;
        padding-top: 15px;
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 768px){
    .navbar-content{
        height: 100%;
        justify-content: flex-start;
        padding-top: 10px;
        padding-bottom: 0;
    }
    
    .navbar-content .navbar {
        justify-content: center;
        flex-wrap: wrap;
        padding: 15px 5%;
        margin-bottom: 15px;
    }
    
    .content{
        margin-top: auto;
        padding: 30px 15px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .info-hero{
        height: 100%;
        justify-content: flex-start;
        padding-top: 10px;
        padding-bottom: 0;
    }
}

.gecis-button{
    position: fixed;
    bottom: 30px;
    right: 47%;
    border: none;
    width: 130px;
    height: 40px;
    border-radius: 20px;
    background-color: #f1a949;
    color: white;
    cursor: pointer;
    overflow: hidden;
    z-index: 2;
}

.gecis-button:hover{
    transform:  scale(1.1);
}

#yan-kesfet:hover{
    color: rgb(98, 98, 95);
}

.information-page{
    background: rgb(44,42,50);
    background: linear-gradient(90deg, rgba(44,42,50,1) 0%, rgba(34,33,39,1) 10%, rgba(28,28,32,1) 44%, rgba(39,37,44,1) 68%);  
    width: 100%;
   height: 100%;
    justify-content: center;
    display: flex;
}

.information-block{
    width: 100%;
    height: 100%;
 
}

.information{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    margin-top: 50px;

    
    
}
.information-block img{
    height: 500px;
    border-radius: 20px;
    width: 350px;
}

.information-text{
    color: #fcb604;
    width: 600px;
    font-size: 16px;
    font-weight: 500;
}

.information-text h1{
    margin-bottom: 50px;
}

.information{
    margin-bottom: 110px;
}

@media only screen and (max-width: 768px){
    .information-block img {
        height: 400px;
        width: 200px;
    }
    .information {
        flex-direction: column-reverse;
    }
    .information-text{
        width: 100%;
        padding: 20px;
    }
}

