.privacy-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.privacy-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(9px);
    opacity: 0.3;
    z-index: 0;
}

.privacy-container {
    background: rgba(30, 30, 30, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    margin: 2rem 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.privacy-title {
    font-size: 1.8rem;
    color: #8b0000;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}

.privacy-content {
    color: #ccc;
    line-height: 1.6;
}

.privacy-content h2 {
    color: #8b0000;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    letter-spacing: 0.1rem;
}

.privacy-content h3 {
    color: #a00000;
    font-size: 1.1rem;
    margin: 1.2rem 0 0.8rem 0;
}

.privacy-content p {
    margin: 0.8rem 0;
    font-size: 0.95rem;
}

.privacy-content ul {
    margin: 0.8rem 0 0.8rem 1.5rem;
    list-style-type: disc;
}

.privacy-content li {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.privacy-content strong {
    color: #fff;
}

.privacy-contact {
    background: rgba(139, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 5px;
    border-left: 3px solid #8b0000;
    margin: 1rem 0;
}

.privacy-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.privacy-back-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #8b0000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 0.1rem;
    transition: all 0.3s;
}

.privacy-back-btn:hover {
    background: #a00000;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 1.5rem;
        width: 95%;
    }
    
    .privacy-title {
        font-size: 1.4rem;
    }
    
    .privacy-content h2 {
        font-size: 1.1rem;
    }
    
    .privacy-content p,
    .privacy-content li {
        font-size: 0.9rem;
    }
}

