/* Privacy Page Specific Styles */
.privacy-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
    line-height: 1.7;
}

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

.privacy-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--oxi-orange), var(--oxi-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.privacy-header .subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    color: var(--oxi-orange);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
}

.privacy-section p, 
.privacy-section li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.privacy-section ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.contact-email {
    color: var(--oxi-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-email:hover {
    text-decoration: underline;
}

.effective-date {
    font-style: italic;
    color: rgba(255,255,255,0.6);
    text-align: right;
    margin-top: 3rem;
}

.link-btn {
    color: white;;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .privacy-container {
        padding: 0 1.5rem;
        margin: 2rem auto;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
}