/* Privacy policy page */

.privacy-page {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.privacy-about-nav-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 0;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-header h1 {
    color: var(--text-color);
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.effective-date {
    color: var(--text-color);
    font-size: 16px;
    opacity: 0.8;
    margin: 0;
}

.privacy-content {
    background: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy-section {
    margin-bottom: 30px;
}

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

.privacy-section h2 {
    color: var(--text-color);
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.privacy-section p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.privacy-section ul {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
}

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

.privacy-section a {
    color: var(--button-primary);
    text-decoration: none;
}

.privacy-section a:hover {
    color: var(--button-primary-hover);
    text-decoration: underline;
}

.privacy-section strong {
    font-weight: 600;
}

.agreement-notice {
    background: var(--card-bg-color);
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.agreement-message {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-accept-agreement {
    background: var(--button-secondary);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-accept-agreement:hover {
    background: var(--button-primary);
    color: white;
}

.btn-accept-agreement:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 20px 15px;
    }

    .privacy-header h1 {
        font-size: 28px;
    }

    .privacy-content {
        padding: 20px;
    }

    .privacy-section h2 {
        font-size: 20px;
    }

    .privacy-section p,
    .privacy-section ul {
        font-size: 15px;
    }

    .agreement-notice {
        padding: 15px;
    }

    .agreement-message {
        font-size: 15px;
    }
}
