﻿.privacy-section {
    padding: 120px 0 60px;
    /*background: linear-gradient(45deg, var(--dark-gray), #2a2a2a);*/
    position: relative;
    overflow: hidden;
}

    .privacy-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%2300ff00" fill-opacity="0.1" x="0" y="0" width="100" height="100"/></svg>');
        opacity: 0.1;
        animation: backgroundMove 20s linear infinite;
    }

.privacy-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

    .privacy-content p {
        line-height: 1.8;
        margin-bottom: 20px;
    }

.subsection-title {
    color: var(--cyber-lemon);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    font-weight: 600;
}

.definition-list {
    list-style: none;
    padding-left: 0;
}

    .definition-list li {
        margin-bottom: 15px;
        padding-left: 20px;
        position: relative;
    }

        .definition-list li::before {
            content: '•';
            color: var(--cyber-lemon);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

.highlight-text {
    color: var(--cyber-lemon);
    font-weight: 600;
}