/* Import base styles from index.css */
@import url('index.css');

/* Privacy Page Specific Styles */
.privacy-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0585FF 0%, #0066CC 100%);
    overflow: hidden;
    padding-top: 100px;
}

.privacy-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

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

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 12px;
    opacity: 0.6;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.privacy-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Table of Contents */
.table-of-contents {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.toc-wrapper {
    text-align: center;
}

.toc-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.toc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #0585FF 0%, #0066CC 100%);
    color: white;
}

.toc-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
    color: #0585FF;
    transition: color 0.3s ease;
}

.toc-item:hover i {
    color: white;
}

.toc-item span {
    font-weight: 500;
    font-size: 1rem;
}

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

.content-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section .section-header {
    margin-bottom: 30px;
}

.content-section .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 15px;
}

.content-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #0585FF 0%, #0066CC 100%);
    border-radius: 2px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.content-text p {
    margin-bottom: 20px;
}

.content-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-text li {
    margin-bottom: 10px;
}

/* Highlight Boxes */
.highlight-box {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #0585FF 0%, #0066CC 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    color: white;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.highlight-content p {
    margin: 0;
    opacity: 0.95;
}

/* Warning Boxes */
.warning-box {
    display: flex;
    gap: 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.warning-icon {
    width: 50px;
    height: 50px;
    background: #f39c12;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.warning-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #856404;
    margin-bottom: 10px;
}

.warning-content p {
    color: #856404;
    margin: 0;
}

/* Purpose Grid */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.purpose-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.purpose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.purpose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0585FF 0%, #0066CC 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 20px;
}

.purpose-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.purpose-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Information Categories */
.info-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.info-category {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid #0585FF;
    transition: all 0.3s ease;
}

.info-category:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.category-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0585FF 0%, #0066CC 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.category-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.info-category p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* Usage List */
.usage-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.usage-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.usage-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0585FF 0%, #0066CC 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 5px;
}

.usage-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.usage-item p {
    color: #666;
    margin: 0;
}

/* Sharing Partners */
.sharing-partners {
    margin-top: 30px;
}

.partner-type {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #0585FF;
}

.partner-type h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.partner-type ul {
    margin: 15px 0 0 0;
    padding-left: 20px;
}

.partner-type li {
    margin-bottom: 10px;
    color: #555;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.security-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0585FF 0%, #0066CC 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
}

.security-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.security-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Deletion Methods */
.deletion-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.deletion-method {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.deletion-method:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0585FF 0%, #0066CC 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 20px;
}

.deletion-method h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.deletion-method p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Important Notice */
.important-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
}

.important-notice i {
    color: #f39c12;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.important-notice p {
    color: #856404;
    margin: 0;
    font-weight: 500;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card .contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0585FF 0%, #0066CC 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 20px;
}

.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Update Notice */
.update-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.update-notice i {
    color: #0c5460;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.update-notice p {
    color: #0c5460;
    margin: 0;
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0585FF 0%, #0066CC 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(5, 133, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 133, 255, 0.4);
}

/* Active navigation link */
.nav-menu a.active {
    color: #0585FF !important;
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
    background: linear-gradient(135deg, #0585FF 0%, #0066CC 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero {
        min-height: 50vh;
        padding-top: 80px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .privacy-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .toc-item {
        padding: 15px 20px;
    }
    
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .security-measures {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .deletion-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-box,
    .warning-box {
        flex-direction: column;
        gap: 15px;
    }
    
    .highlight-icon,
    .warning-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .content-section .section-header h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 60px 0;
    }
    
    .table-of-contents {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .info-category,
    .purpose-item,
    .security-item,
    .deletion-method,
    .contact-card {
        padding: 20px;
    }
    
    .purpose-icon,
    .security-icon,
    .method-icon,
    .contact-card .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
