.privacy-policy-wrapper {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.privacy-intro p {
    font-size: 16px;
    margin-bottom: 25px;
}

.privacy-section {
    border-bottom: 1px solid #e1e1e1;
    /* margin-bottom: 15px; */
}

.privacy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 12px 0;
}

.privacy-icon {
    font-size: 20px;
    margin-right: 10px;
    color: #4a7aff;
}

.privacy-header h5 {
    flex-grow: 1;
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

.privacy-toggle {
    font-size: 22px;
    color: #777;
    transition: 0.2s ease;
}

.privacy-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.5s ease;
}

.privacy-open .privacy-body {
    max-height: 600px;
    opacity: 1;
}

