﻿
.kvkk-page-title {
    text-align: center;
    color: #1f4d2b;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.04rem;
    margin-bottom: 14px;
}

.accordion {
    max-width: 900px;
    margin: auto;
}

.accordion-item {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: #e7f3ec;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

    .accordion-header .icon {
        font-size: 26px;
        transition: transform .3s ease;
    }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 24px;
    transition: max-height .4s ease, padding .3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 3000px;
    padding: 24px;
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

.accordion-content h2 {
    margin-top: 0;
}

.accordion-content ul {
    padding-left: 18px;
}
