.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: rgba(26, 26, 26, 0.95);
    color: #e0e0e0;
    min-height: 100vh;
    box-sizing: border-box;
}

.back-link {
    display: inline-block;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 1em;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.back-link:hover {
    color: #fff;
    text-decoration: underline;
}

.back-link:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-radius: 2px;
}

.privacy-container h1 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 1.5em;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.privacy-section h3 {
    font-size: 1.2em;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.privacy-section p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e0e0e0;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-section li {
    margin-bottom: 10px;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.privacy-section a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #66BB6A;
    text-decoration: underline;
}

.privacy-section a:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
    border-radius: 2px;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.privacy-table th,
.privacy-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
}

.privacy-table th {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: bold;
    width: 200px;
}

.privacy-table td {
    color: #e0e0e0;
}

.privacy-table ul {
    margin: 0;
    padding-left: 20px;
}

.privacy-table li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 20px 15px;
    }

    .privacy-container h1 {
        font-size: 1.5em;
    }

    .privacy-section h2 {
        font-size: 1.3em;
    }

    .privacy-section h3 {
        font-size: 1.1em;
    }

    .privacy-table {
        font-size: 0.9em;
    }

    .privacy-table th,
    .privacy-table td {
        padding: 10px;
        display: block;
        width: 100%;
    }

    .privacy-table th {
        border-bottom: none;
    }

    .privacy-table td {
        border-top: none;
    }
}

