.privacy-policy-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy-policy-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2980b9);
}

.privacy-policy-container h1 {
    font-size: 2em;
    color: #2c3e50;
    margin: 30px 0 20px;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
}

.privacy-policy-container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2980b9);
    border-radius: 2px;
}

.privacy-policy-container pre {
    font-family: Arial, sans-serif;
    white-space: pre-wrap;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    color: #34495e;
    line-height: 1.8;
    font-size: 0.9em;
    margin: 20px 0;
    border-left: 4px solid #3498db;
    overflow-y: auto;
    max-height: 400px;
}

.privacy-policy-container pre::-webkit-scrollbar {
    width: 8px;
}

.privacy-policy-container pre::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.privacy-policy-container pre::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

.privacy-policy-container pre::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

.privacy-policy-container button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
    text-align: center;
    border: none;
    width: 200px;
}

.privacy-policy-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

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

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

    .privacy-policy-container pre {
        font-size: 1em;
        padding: 15px;
        max-height: 250px;
    }
}
