/* Shared layout for platform legal policy pages */

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

.policy-header {
    text-align: center;
    margin-bottom: 48px;
}

.policy-header h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #f5f5f5;
}

.policy-header .policy-subtitle {
    font-size: 18px;
    color: #a3a3a3;
    margin-bottom: 8px;
}

.policy-header p {
    font-size: 16px;
    color: #a3a3a3;
}

.policy-content h2 {
    font-size: 28px;
    font-weight: 500;
    margin: 40px 0 20px 0;
    color: #f5f5f5;
}

.policy-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 24px 0 12px 0;
    color: #e5e5e5;
}

.policy-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #b3b3b3;
}

.policy-content ul {
    margin: 16px 0 16px 24px;
    line-height: 1.8;
}

.policy-content li {
    margin-bottom: 8px;
    color: #b3b3b3;
}

.policy-content a {
    color: #7a9dc8;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #8aadcc;
}

.policy-content .agent-block {
    margin: 16px 0 24px 0;
    padding: 16px 20px;
    background: rgba(122, 157, 200, 0.08);
    border-left: 3px solid #7a9dc8;
    line-height: 1.8;
    color: #b3b3b3;
}

.policy-intro {
    margin-bottom: 24px;
    line-height: 1.8;
    color: #b3b3b3;
}

.back-link {
    display: inline-block;
    margin-bottom: 32px;
    color: #7a9dc8;
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: #8aadcc;
}

.legal-related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(50, 55, 70, 0.3);
}

.legal-related h2 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 16px 0;
    color: #e5e5e5;
}

.legal-related ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.legal-related li {
    margin-bottom: 8px;
}

.policy-footer-nav {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(50, 55, 70, 0.3);
    text-align: center;
}

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

    .policy-header h1 {
        font-size: 36px;
    }

    .policy-content h2 {
        font-size: 24px;
    }
}
