* {
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #212121;

}

body {
    font-family:'Times New Roman', Times, serif;
    display: flex;
    flex-direction: column;
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    width: 100%;
}
a{
    text-decoration: none;
}
#body {
    display: flex;
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    width: 100%;
    background-color: #212121;

}
#nav-bar{
    background-position: center;
    height: 100vh; /* Yüksekliği tam ekran yapar */
    width: 20%; /* Genişliği tam ekran yapar */
    display: flex;
    text-align: center;
    padding: 20px;
    background-color: #212121;
    
}
.nav-bar-content{
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    justify-content:space-between;


}
.logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: auto;
    align-items: center;
}
.logo img{
    display: flex;
    justify-content: center;
    width: 50px;
}
.page-button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    align-items: flex-start;
}
.page-button a{
    display: flex;
    text-decoration: none;
    color: #a6a6a6;
    line-height: 35px;
    text-align: left;
    width: 100%;
    font-size: 25px;
    transition: 0.4s;
    padding: 15px 0px 15px 0px;

} 
.page-button a:hover{
    text-decoration: none;
    color: #FFFFFF;
    } 
footer a {
    display: flex;
    color: #a6a6a6;
    font-size: 20px;
    padding-bottom: 20px;
}
footer a:hover{
    display: flex;
    color: #FFFFFF;
    text-decoration: none;
    
}
footer p{
    color: #a6a6a6;
    font-size: 15px;
    text-align: left;
}
footer .uyari{
    padding-top: 10px;
    color: #a6a6a6;
    font-size: 15px;
    text-align: left;
}

#content-wrapper{
    /*background-image: url("../image/main-promo.png"); /* Arka plan görselinizin yolu */
    background-size: cover;
    background-color: #FFFFFF;
    /* Yüksekliği tam ekran yapar */
    width: 80%; /* Genişliği tam ekran yapar */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: white;
    text-align: center;
    padding: 20px;
}
.accordion-section{
    display: flex;
    padding-left: 10%;
    padding-right: 10%;
}
#accordion{
    margin: 100px auto;
    max-width: 900px;
    width: 100%;
    color: black;

}
#accordion li{
    list-style: none;
    width: 100%;
    margin-bottom: 10px;
    background-color: #f8f8f8; 
    padding: 10px;
    border-radius: 4px;
}
#accordion li label{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    color: #91141c;
}
#accordion li label span{
    transform: rotate(90deg);
    font-weight: bold;
    font-size: 22px;
}
#accordion label + input[type="checkbox"]{
    display: none; 
}
#accordion .content{
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow:  hidden;
    animation: normal;
    transition:ease-in max-height ;
    text-align: left;
    
}
#accordion label + input[type="checkbox"]:checked + .content{
    max-height: 100%;
    padding: 10px 10px; /* İçeriğin açıldığında görünür olmasını sağlayacak padding */

}
@media screen and (min-width: 950px) {
    .off-screen-menu{
        display: none !important;
    }
    nav{
        display: none !important;
    }

   
    
}