/* Privacy Policy Page Styles */

/* Import dot flow animation from terms.css */
@import url('terms.css');

/* Hero Section */
.privacy-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?w=1920&h=600&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    padding: 100px 0 80px;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
}

.privacy-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37, #ffd700, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.privacy-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.privacy-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-hero .breadcrumb-item a:hover {
    color: #ffd700;
}

.privacy-hero .breadcrumb-item.active {
    color: white;
}

.privacy-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Privacy Content */
.privacy-content {
    background: #f8fafc;
}

/* Main Content */
.privacy-main-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.privacy-intro {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-intro .lead {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
}

.last-updated {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 0.9rem;
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 4px solid #8b5cf6;
}

.last-updated i {
    color: #8b5cf6;
}

/* Privacy Sections */
.privacy-section {
    padding: 32px;
    border-bottom: 1px solid #f3f4f6;
}

.privacy-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
}

.section-content {
    color: #374151;
    line-height: 1.7;
}

.section-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 24px 0 12px;
}

.section-content p {
    margin-bottom: 16px;
}

.section-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.section-content li {
    margin-bottom: 8px;
    position: relative;
}

.section-content li::marker {
    color: #8b5cf6;
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #374151;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #8b5cf6;
    font-size: 1.1rem;
    width: 24px;
    margin-right: 12px;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .privacy-hero {
        padding: 80px 0 60px;
        min-height: 300px;
    }
    
    .privacy-hero-title {
        font-size: 2rem;
    }
    
    .privacy-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-section {
        padding: 20px;
    }
    
    .privacy-intro {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .privacy-hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}