/* Privacy Policy Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-content p {
    font-size: 1.2rem;
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Privacy Content */
.privacy-content {
    padding: 80px 0;
    background: #f8f8f8;
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Last Updated */
.last-updated {
    text-align: right;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.last-updated p {
    color: #666;
    font-size: 0.95rem;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #d4af37;
}

.policy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.policy-section ul li {
    position: relative;
    padding: 12px 0 12px 30px;
    color: #555;
    line-height: 1.8;
    border-bottom: 1px dotted #e0e0e0;
}

.policy-section ul li:last-child {
    border-bottom: none;
}

.policy-section ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Contact Info Section */
.contact-info {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info > p {
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    margin: 8px 0;
    color: #555;
    line-height: 1.6;
}

.contact-details strong {
    color: #2c2c2c;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .policy-wrapper {
        padding: 30px 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
        padding-left: 15px;
    }
    
    .policy-section p,
    .policy-section ul li {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    .page-header {
        background: none;
        color: black;
        padding: 40px 0;
    }
    
    .header-content h1 {
        color: black;
    }
    
    .header-content p {
        color: #666;
    }
    
    .privacy-content {
        padding: 0;
        background: none;
    }
    
    .policy-wrapper {
        box-shadow: none;
        padding: 20px;
    }
}