.page-title {
    position: relative;
    background-repeat: no-repeat;
    background-position: center 45%;
    background-size: cover;
    padding: 150px 0 150px;
    min-height: 250px;
}

@media only screen and (max-width: 767px) {
.page-title {
    padding: 70px 0 60px;
}
}
/*
.page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #131313;
    opacity: 0.7;
    content: "";
}
*/
.page-title .title-outer {
    text-align: center;
}

.page-title .title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 17px;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeInUp 1s ease 0.3s forwards;
}

@keyframes titleFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 767px) {
.page-title .title {
    font-size: 54px;
    margin-bottom: 10px;
}
}

.page-title .text {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.05em;
    max-width: 520px;
}

/* ===================================
   KVKK Section Styles
   =================================== */

.kvkk-section {
    background: #fff;
    padding: 80px 0;
}

.kvkk-content {
    max-width: 100%;
}

.kvkk-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #000000;
    margin-bottom: 20px;
    text-align: left;
}

.kvkk-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 40px;
}

.kvkk-documents {
    display: flex;
    gap: 60px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.kvkk-column {
    flex: 1;
    min-width: 300px;
}

.kvkk-document-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kvkk-document-list li {
    margin-bottom: 20px;
}

.kvkk-document-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #9e9e9e;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.6;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.kvkk-document-link:hover {
    color: #4A7BC0;
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
    .kvkk-documents {
        gap: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .kvkk-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .kvkk-divider {
        margin-bottom: 30px;
    }
    
    .kvkk-documents {
        flex-direction: column;
        gap: 30px;
    }
    
    .kvkk-column {
        min-width: 100%;
    }
    
    .kvkk-document-link {
        font-size: 15px;
    }
}