body {
    background: #f4f6f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #212529;
}

.policy-header {
    background: linear-gradient(135deg, #004796 0%, #0066cc 100%);
    padding: 50px 0 70px;
    color: #fff;
}

.policy-header .logo-container img {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.policy-header h1 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 5px;
}

.policy-header p {
    opacity: 0.85;
    margin-bottom: 0;
}

.policy-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-top: -50px;
    margin-bottom: 60px;
}

.info-box {
    border-radius: 12px;
    padding: 16px;
    font-size: 0.85rem;
}

.info-box.danger {
    background: #fdecea;
    border: 1px solid #f7c9c3;
}

.info-box.warning {
    background: #fff6e5;
    border: 1px solid #ffe1a8;
}

.method-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
}

.method-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.method-icon.brand {
    background: #dbeafe;
    color: #004796;
}

.method-icon.accent {
    background: #ffe8d6;
    color: #f97316;
}

.badge-pill {
    background: #fdecea;
    color: #b3261e;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.back-btn {
    border-radius: 30px;
    padding: 8px 24px;
    font-weight: 600;
}

.btn-danger-tp {
    background: #dc2626;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 20px;
}

.btn-danger-tp:hover {
    background: #b91c1c;
}

footer {
    text-align: center;
    padding: 20px 0 40px;
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .policy-card {
        padding: 24px;
        margin-top: -35px;
    }

    .policy-header {
        padding: 40px 0 60px;
    }
}