.policy-container {
    padding: 120px 20px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.policy-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.back-home:hover {
    transform: translateX(-5px);
}

.policy-content h2 {
    margin: 40px 0 20px;
    font-size: 1.5rem;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.policy-content h3 {
    margin: 30px 0 15px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.subtitle {
    display: block;
    margin-top: -10px;
    margin-bottom: 20px;
    color: #64748b;
    font-weight: 600;
}

.policy-meta {
    margin-bottom: 30px;
}

.policy-meta p {
    margin-bottom: 5px !important;
    font-size: 0.95rem;
}

.alert-box {
    margin: 25px 0;
    padding: 20px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.alert-box.warning {
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
}

.alert-box.secure {
    border-left: 4px solid #10b981;
    background: #ecfdf5;
}

.alert-box.block {
    border-left: 4px solid #ef4444;
    background: #fef2f2;
}

.alert-box p {
    margin-bottom: 10px !important;
}

.alert-box ul {
    margin-bottom: 0 !important;
}

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

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.policy-content li {
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.policy-content li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.footer-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-info p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: filter 0.3s;
}

.footer-info a:hover {
    filter: brightness(1.2);
    text-decoration: underline;
}