/* Privacy Policy Page Styles */

/* Header */
.privacy-header {
    background: white;
    border-bottom: 1px solid rgba(91, 95, 222, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.brand-logo i {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.back-home {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.back-home:hover {
    background: rgba(91, 95, 222, 0.1);
    color: var(--primary-dark);
    transform: translateX(-3px);
}

/* Main Content */
.privacy-main {
    background: var(--light-bg);
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Page Title */
.page-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.page-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Privacy Sections */
.privacy-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.privacy-section:hover {
    border-color: rgba(91, 95, 222, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.privacy-section h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.section-content {
    line-height: 1.8;
}

.section-content p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.highlight {
    background: linear-gradient(135deg, rgba(91, 95, 222, 0.1), rgba(118, 75, 162, 0.1));
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    font-weight: 500;
    color: var(--primary-color) !important;
}

/* Info Items */
.info-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item h3 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.info-item p {
    margin: 0;
    color: #555;
}

/* Rights List */
.rights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    color: #555;
}

.rights-list li:last-child {
    margin-bottom: 0;
}

.rights-list li i {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Contact Info */
.contact-info {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--success-color);
}

.contact-info p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.contact-info i {
    color: var(--success-color);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Footer */
.privacy-footer {
    background: var(--dark-color);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links a.active {
    background: var(--primary-color);
    color: white;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 0;
    font-size: 0.9rem;
}

.icp-info {
    opacity: 0.7;
    font-size: 0.8rem !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-main {
        padding: 2rem 0;
    }
    
    .page-title {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .info-item h3 {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .rights-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brand-logo {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .privacy-content {
        padding: 0 1rem;
    }
    
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section {
        padding: 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .info-item {
        padding: 0.8rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
} 