/* Privacy Policy Page Styles */
.privacy-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('../images/privacy-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 50vh;
}

.privacy-section {
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.privacy-container {
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
}

.privacy-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3rem;
    backdrop-filter: blur(10px);
    clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.last-updated {
    text-align: right;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.privacy-intro {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.privacy-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    color: var(--primary-jade);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.privacy-section h3 {
    color: var(--primary-accent);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.privacy-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.privacy-section ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.privacy-section li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.privacy-section li::before {
    content: '>';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-jade);
}

.privacy-section strong {
    color: var(--primary-jade);
    font-weight: 600;
}

.contact-info {
    background: rgba(0, 168, 107, 0.05);
    padding: 1.5rem;
    border-left: 3px solid var(--primary-jade);
    margin-top: 1.5rem;
}

.contact-info a {
    color: var(--primary-jade);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--primary-accent);
    text-shadow: 0 0 8px rgba(0, 168, 107, 0.4);
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-jade), var(--primary-accent));
    transition: width 0.3s ease;
}

.contact-info a:hover::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .privacy-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 1.5rem;
        clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    }
    
    .privacy-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
