﻿.privacy-container {
            padding: 20px 16px 100px;
            max-width: 640px;
            margin: 0 auto;
        }
        
        .privacy-header {
            text-align: center;
            margin-bottom: 32px;
        }
        
        .privacy-header h1 {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 8px 0;
        }
        
        .privacy-header p {
            font-size: 14px;
            color: var(--text-sub);
            margin: 0;
        }
        
        .privacy-section {
            background: white;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        
        .privacy-section h2 {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 14px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .privacy-section h2 .section-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            font-size: 13px;
            font-weight: 700;
        }
        
        .privacy-section p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-main);
            margin: 0 0 12px 0;
        }
        
        .privacy-section p:last-child {
            margin-bottom: 0;
        }
        
        .privacy-section ul {
            margin: 12px 0;
            padding-left: 20px;
        }
        
        .privacy-section li {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-main);
            margin-bottom: 8px;
            position: relative;
        }
        
        .privacy-section li:last-child {
            margin-bottom: 0;
        }
        
        .privacy-section .highlight-box {
            background: #F8F9FA;
            border-radius: 12px;
            padding: 14px 16px;
            margin: 12px 0;
            border-left: 4px solid var(--accent);
        }
        
        .privacy-section .highlight-box p {
            margin: 0;
            font-size: 14px;
        }
        
        .privacy-section .highlight-box strong {
            color: var(--primary);
        }
        
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 12px 0;
            font-size: 13px;
        }
        
        .data-table th {
            background: var(--primary);
            color: white;
            padding: 10px 12px;
            text-align: left;
            font-weight: 600;
        }
        
        .data-table td {
            padding: 10px 12px;
            border-bottom: 1px solid #eee;
            color: var(--text-main);
        }
        
        .data-table tr:last-child td {
            border-bottom: none;
        }
        
        .data-table tr:nth-child(even) {
            background: #F8F9FA;
        }
        
.privacy-info-box {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: white;
    margin-top: 24px;
}

.privacy-info-box p {
    margin: 6px 0;
    font-size: 14px;
    opacity: 0.9;
}

.privacy-info-box p strong {
    opacity: 1;
}

.privacy-info-box .effective-date {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.back-button {
    position: fixed;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    cursor: pointer;
    z-index: 100;
}

.back-button:active {
    transform: scale(0.95);
}

.privacy-contact-note {
    margin-top: 16px;
}
